@charset "utf-8";
/* CSS Document */

/* css reset */

/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
    /* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
    /* list elements 列表元素 */
pre,
    /* text formatting elements 文本格式元素 */
fieldset,
legend,
button,
input,
textarea,
    /* form elements 表单元素 */
th,
td {
    /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    border: 0px;
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
    font-family: 'Microsoft Yahei', "Lucida Grande", "Tahoma", "Arial", "Helvetica", "sans-serif";
    font-size: 14px;
    color: #333;
    /* [disabled]outline:none; */
}

button,
input,
select,
textarea {
    outline: none;
}

html {
    line-height: 1;
}

address,
cite,
em,
var,
i {
    font-style: normal;
}

/* 将斜体扶正 */

h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4,
h5,
h6 {
    font-size: 100%;
}

/* 重置列表元素 */
ul,
ol,
li {
    list-style: none;
}

/* 重置文本格式元素 */
a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    color: #ef3838;
    transition-duration: 400ms;
    -moz-transition-duration: 400ms;
    -webkit-transition-duration: 400ms;
    -o-transition-duration: 400ms;
}

/* 重置图片元素 */
img {
    border: 0px;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}
/*//全屏按钮*/
  video::-webkit-media-controls-fullscreen-button {
      display: none;
  }
/*//播放按钮*/
  video::-webkit-media-controls-play-button {
      display: none;
  }
/*//进度条*/
  video::-webkit-media-controls-timeline {
      display: none;
  }
/*//观看的当前时间*/
  video::-webkit-media-controls-current-time-display{
      display: none;
  }
/*//剩余时间*/
  video::-webkit-media-controls-time-remaining-display {
      display: none;
  }
/*//音量按钮*/
  video::-webkit-media-controls-mute-button {
      display: none;
  }
video::-webkit-media-controls-toggle-closed-captions-button {
    display: none;
}
/*//音量的控制条*/
  video::-webkit-media-controls-volume-slider {
      display: none;
  }
/*//所有控件*/
  video::-webkit-media-controls-enclosure{
      display: none;
  }
/** 头部导航条样式重写 */
.header {
    width: 100%;
    height: var(--headerHeight);
    background-color: #d8dde0;
    position: relative;
}

.header_conter {
    width: 94%;
    margin: 0 auto;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
}

/*.header_conter*/
.logo img {
    width: 100%;
    height: 100%;
}

.pcLogo {
    display: block;
}

.h5Logo {
    display: none;
}

.nav {
    width: 60%;
    display: block;
    margin-left: 15%;
}

.menu {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.h5menu {
    width: 2.63%;
    display: none;
}

.h5menu img {
    width: 100%;
    height: 100%;
}

.menu li {
    line-height: var(--headerHeight);
    height: 100%;
}

.menu li a {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
}

.menu li a:hover {
    color: #0076E7;
    transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
}

.menu li.on a {
    color: #0076E7;
}

.menu li.on {
    position: relative;
}

/*.menu li.on::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 96px;*/
/*    height: 4px;*/
/*    width: 70px;*/
/*    background: #0076E7;*/
/*    transform: translateX(45%);*/
/*    right: 50%;*/
/*}*/
.more {
    padding: 0;
}

.nav > .menu li {
    margin-right: 0;
}

.menu li.more {
    position: relative;
    /*margin-right: 0;*/
}

.menu li.more:before {
    content: '';
    position: absolute;
    right: -26px;
    top: 47px;
    display: inline-block;
    width: 14px;
    height: 8px;
    background-image: url(../img/video/arrow-down.png);
    background-repeat: no-repeat;
    /*background-position: -10px -69px;*/
    /*transition-duration: 400ms;*/
    /*-moz-transition-duration: 400ms;*/
    /*-webkit-transition-duration: 400ms;*/
    /*-o-transition-duration: 400ms;*/
}

.menu li.more:hover:before {
    background-image: url(../img/video/arrow-up.png);
    /*background-position: -10px -86px;*/
    /*transition-duration: 400ms;*/
    /*-moz-transition-duration: 400ms;*/
    /*-webkit-transition-duration: 400ms;*/
    /*-o-transition-duration: 400ms;*/
}

.menu li > .menu-child {
    display: none;
    background: rgba(0, 0, 0, 0.8) !important;
    /*opacity: 0.2;*/
    filter: alpha(opacity=90);
    /*background: rgba(255, 255, 255, 0.9);*/
    position: absolute;
    width: max-content;
    z-index: 9999;
    left: -20px;
    top: 99px;
    text-align: center;
}

.menu li:nth-child(3) > .menu-child {
    left: -79px !important;
}

.menu li:nth-child(4) > .menu-child {
    left: -33px !important;
}

.menu li:nth-child(5) > .menu-child {
    left: -14px !important;
}

.menu li > .menu-child li {
    float: none;
    margin-right: 20px;
    line-height: 40px;
    text-indent: 20px;
    opacity: 1;
}


.menu li > .menu-child li:first-child {
    padding-top: 12px;
}

.menu li > .menu-child li:last-child {
    padding-bottom: 10px;
}

.menu li > .menu-child li a {
    color: #fff !important;
    opacity: 1;
    font-size: 16px;
}

.menu li > .menu-child li.on {
    position: relative;
}

.menu li>.menu-child li.on::after{
    content: '';
    position: absolute;
    /*top: 10px;*/
    height: 40px;
    width: 122%;
    background: #003399;
    left: -10px;
    z-index: -2;
    opacity: 0.5;
}
.menu li:nth-child(4) > .menu-child li.on::after{
    width: 140%;
}
.menu li > .menu-child li:nth-child(5) {
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
}
.menu li>.menu-child li:nth-child(5)::before{
    content: '';
    position: absolute;
    top: -1px;
    height: 1px;
    width: 122%;
    background: #fff;
    left: -10px;
    /*z-index: -2;*/
}
.menu li:nth-child(4)>.menu-child li:nth-child(5){
    margin-top: 0;
    padding-top: 0;
}
.menu li:nth-child(4)>.menu-child li:nth-child(5)::before{
    display: none;

}
.menu li > .menu-child li.on a {
    /*color: #0076E7 !important;*/
    font-weight: bold;
}

.menu li > .menu-child li a:hover {
    /*color: #0076E7 !important;*/
    transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    font-weight: 600 !important;;
}

.menu li.more:hover > .menu-child {
    display: block;
}

.h5MenuList {
    position: absolute;
    top: var(--headerHeight);
    width: 94%;
    z-index: 5;
    background-color: #fff;
    display: none;
}

.h5MenuListItem {
    padding: 10px;
}

.h5MenuListItem a {
    font-weight: 500;
    font-size: 15px;
    color: #384764;
    cursor: pointer;
    transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
}

.h5MenuListItem a:hover {
    color: #0076E7;
}

.h5MenuListItem:hover {
    cursor: pointer;
}

.h5MenuList div > .on a {
    color: #0076E7;
}

.h5MenuList div > .more:hover > .menu-child > .h5MenuListItem a {
    color: #384764;
}

.h5MenuList div > .more:hover > .menu-child > .on a {
    color: #0076E7;
}

.h5MenuList div > .more {
    position: relative;
}

.h5MenuList div > .more:hover > .menu-child {
    display: block;
}

.h5MenuListItem .menu-child {
    display: none;
}

.h5MenuList div.more:before {
    content: '';
    position: absolute;
    right: 20px;
    /*top: 48px;*/
    display: inline-block;
    width: 14px;
    height: 8px;
    background-image: url(../img/video/arrow-down.png);
    background-repeat: no-repeat;
}

.h5MenuList div.more:hover:before {
    background-image: url(../img/video/arrow-up.png);
}

.menu-child {
    padding: 0 10px;
}

/** 头部导航条样式重写 -- 结束 */

:root {
    --headerHeight: 100px;
    --screenHeight: calc(100vh - var(--headerHeight));
    --swiper-pagination-bullet-color: #ffffff;
}

.heightContent {
    height: 100%;
}

.mt120 {
    /* margin-top: 120px; */
}


/** 鼠标朝上/朝下的样式 -- 开始 */
.mouseClass {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 90px;
    z-index: 10;
}

.mouseClass > img {
    width: 100%;
    height: 100%;
}

/** 鼠标朝上/朝下的样式 -- 结束 */
/** 竖屏轮播图 分页的样式修改 -- 开始 */
.swiper-pagination {
    right: 60px !important;
}

.swiper-pagination-bullet {
    width: .625rem;
    height: .625rem;
    background: var(--swiper-pagination-bullet-color);
    margin: 2.8625rem 0 !important;
    opacity: unset;
}

.swiper-pagination-bullet-active {
    position: relative;
}

.swiper-pagination-bullet-active::before {
    content: '';
    /* 用于使伪元素显示 */
    display: block;
    /* 设置为块级元素以应用宽度和高度 */
    width: 50px;
    /* 设置宽度为50px */
    height: 50px;
    /* 设置高度为50px */
    border: .125rem solid var(--swiper-pagination-bullet-color);
    /* background-color: currentColor; */
    /* 使用当前文本颜色作为背景色，保持与父元素颜色一致，可按需修改 */
    border-radius: 50%;
    position: absolute;
    left: -1.375rem;
    top: -1.375rem;
}

.paginationLengthen {
    position: absolute;
    right: 40.5px !important;
    top: 69%;
    z-index: 12;
    width: max-content;
}

.paginationLengthen > div:first-child {
    width: 2px;
    height: 80px;
    background: var(--swiper-pagination-bullet-color);
    margin: 0 auto;
}

.paginationLengthenText {
    color: var(--swiper-pagination-bullet-color);
    font-size: 1rem;
}

.paginationLengthenText > span:first-child {
    color: #EA7047;
    font-size: 1.25rem;
}

/** 竖屏轮播图 分页的样式修改 -- 开始 */


/** 定义每一屏的大小*/
.firstScreen {
    width: 100%;
    height: var(--screenHeight);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

/** 第一屏 -- 公共 */
/** 第一屏的样式 */
.firstScreen_content {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    /* 隐藏溢出部分 */
}

.firstScreen_content > div {
    width: 100%;
    height: 100%;
    display: none;
}

.firstScreen_content > div:first-child {
    display: block;
}


.active {
    background-color: #0076e7 !important;
}

.firstScreen_content_item {
}

.firstScreen_content_video {
    z-index: 1;
}

.firstScreen_content_item_img {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.firstScreen_content_item_img_img{
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.firstScreen_content_item_img_img>img{
    width: 100%;
    height: 100%;
}

.carousel-indicators {
    position: absolute;
    bottom: 146px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.carousel-indicators > li {
    height: 4px;
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin: 0 2px;
    cursor: pointer;

}

.carsouselTitle {
    width: 100%;
    /*margin-top: 13%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*font-size: 70px;*/
    font-weight: 500;
    color: #ffffff;
}

.carsouselImg {
    /*width: 120px;*/
    /*height: 120px;*/
    margin: 0 auto;
    margin-top: 131px;
}

.carsouselSubTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 23px;
    /*font-size: 20px;*/
    color: #ffffff;
}

.enforcement {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 131px;
}

.enforcementItem {
    width: 140px;
    text-align: center;
}

.enforcementItemImg {
    /*width: 80px;*/
    /*height: 80px;*/
    margin: 0 auto;
}

.enforcementItemImg > img {
    width: 100%;
    height: 100%;
}

.enforcementItemText {
    font-family: Source Han Sans CN;
    font-weight: 400;
    /*font-size: 20px;*/
    color: #FFFFFF;
    /*margin-top: 27px;*/
}

/** 第一屏结束 */

/** 首页--开始 */
/** 第二屏样式 -- 开始 */
.secondScreen {
    background-image: url('/r/cms/www/default/img/video/qj6422419896.jpg');
}

.secondScreen_content {
    width: 75%;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 24px;
    color: #5B6E96;
    margin: 0 auto;
    margin-top: 150px;
    line-height: 1.9
}

.secondScreen_content_more {
    width: 75%;
    margin: 0 auto;
    text-align: left;
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 20px;
    color: #0076E7;
    margin-top: 50px;
}

.secondScreen_content_img {
    width: 64%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.secondScreen_content_img > div {
    /*width: 156px;*/
}

.secondScreen_content_img > div > img {
    width: 100%;
    height: 100%;
}

/** 第二屏样式 -- 结束 */

/** 第三屏样式 -- 开始 */
.thirdScreen {
    display: block;
    background-image: url('/r/cms/www/default/img/video/cpzxbg.jpg');
}

.swiper-container-main {
    width: 75%;
    /* height: calc(100vh - 6.25rem - 371px); */
    margin: 0 auto;
    margin-top: 9.125rem;
}

.swiper-container-thumbs {
    width: 75%;
    margin: 0 auto;
    margin-top: 1.5625rem;
}

.swiper-container-thumbs > .swiper-wrapper > .swiper-slide {
    width: calc(99% / 5);
}

.swiper-slide-thumb-active {
}

.slideItem {
    width: 86%;
    /*height: 23.75rem;*/
    /* border: .0625rem solid #000; */
    /* margin: 0 7%; */
    /* transform: translateX(-50%); */
}

.slideItemContent {
    width: 87%;
    /*height: 377px;*/
    border: .0625rem solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.thirdScreen_content {
    width: 54%;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 24px;
    padding: 30px;
    position: relative;
}

.thirdScreen_content_title {
    font-size: 34px;
    padding-top: 20px;
}

.thirdScreen_content_text {
    margin-top: 30px;
    line-height: 1.9;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.thirdScreen_content_more {
    font-size: 20px;
    /*margin-top: 30px;*/
    position: absolute;
    bottom: 30px;
}

.thirdScreen_content_img {
    padding: 30px;
    width: 40%;
}

.thirdScreen_content_img > img {
    width: 100%;
    height: 100%;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '';
}

.swiper-button-prev,
.swiper-button-next {
    width: 3.75rem;
    height: 3.75rem;
}

.swiper-button-prev.swiper-button-disabled {
    background-image: url('/r/cms/www/default/img/video/left0.png') !important;
}

.swiper-button-next.swiper-button-disabled {
    background-image: url('/r/cms/www/default/img/video/right0.png') !important;
}
.thumbItem{
    width: 99%;
    margin: 0 auto;
}
.thumbItem > img {
    width: 100%;
}

/** 第三屏H5的样式 -- 开始 */
.h5ThirdScreen {
    display: none;
}

.h5ThirdScreen_content {
    width: 90%;
    margin: 0 auto 0;
}

.h5ThirdScreen_content_page1{
    display: block;
}
.h5ThirdScreen_content_page2{
    display: none;
}

.h5ThirdScreen_content_pageList{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.h5ThirdScreen_content_pageList_item{
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    width: 34px;
    height: 34px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid #7E8DAC;
    display: inline-block;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
}
.h5ThirdScreen_content_pageList_item_active{
    background-color: #0b53a7;
    color: #FFFFFF;
}

.h5ThirdScreen_content_right,
.h5ThirdScreen_content_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px 12px;
    height: calc(var(--screenHeight) / 6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.h5ThirdScreen_content_text {
    width: 62%;
    color: #ffffff;
    font-family: Source Han Sans CN;
    font-weight: 400;
}

.h5ThirdScreen_content_text_title {
    font-size: 34px;
}

.h5ThirdScreen_content_text_text {
    font-size: 10px;
    line-height: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin: 5px 0;
}

.h5ThirdScreen_content_more {
    font-size: 10px;
}

.h5ThirdScreen_content_img {
    width: 34%;
}

.h5ThirdScreen_content_img > img {
    width: 100%;
    height: 100%;
}

.fourthScreen {
    display: block;
    background-image: url('/r/cms/www/default/img/video/fourBg.jpg');
}

.h5FourthScreen {
    display: none;
    background-image: url("/r/cms/www/default/img/video/h5FourBg.jpg");
    background-size: cover;
}

/** 第三屏H5的样式 -- 结束 */

/** 第三屏样式 -- 结束 */
/** 第四屏样式 -- 开始 */
.fourthScreen {
    background-image: url('/r/cms/www/default/img/video/fourBg.jpg');
}

.fourthScreen_content {
    width: 75%;
    height: 100%;
    margin: 0 auto;
    display: flex;

}

.fourthScreen_content_item {
    flex: 1;
    /* 每个项目占据等分的空间 */
    transition: flex 0.3s;
    /* 平滑过渡效果 */
    background-image: url('/r/cms/www/default/img/video/sultion_bg_gray.png');
    background-size: cover;
}

.fourthScreen_content_item:hover {
    flex: 1.5;
    /* 滑过时当前项目占据更多空间 */
    height: 100%;
    background-image: url('/r/cms/www/default/img/video/sultion_bg_blue.png');
}

.fourthScreen_content_item > .fourthScreen_content_item_text {
    display: none;
}

.fourthScreen_content_item > .fourthScreen_content_item_button {
    display: none;
}

.fourthScreen_content_item_active {
    flex: 1.5;
    height: 100%;
    background-image: url('/r/cms/www/default/img/video/sultion_bg_blue.png');
    background-size: cover;
}

.fourthScreen_content_item_active > .fourthScreen_content_item_text {
    display: block;
}

.fourthScreen_content_item_active > .fourthScreen_content_item_button {
    display: block;
}

.fourthScreen_content_item_img {
    width: 6.25rem;
    height: 6.25rem;
    margin: 0 auto;
    margin-top: 10.8125rem;
}

.fourthScreen_content_item_img > img {
    width: 100%;
    height: 100%;
}

.fourthScreen_content_item_title {
    color: #FFFFFF;
    font-weight: 400;
    font-family: Source Han Sans CN;
    text-align: center;
}

.fourthScreen_content_item_title > div:first-child {
    margin-top: 1.25rem;
    font-size: 34px;
}

.fourthScreen_content_item_title > div:last-child {
    margin-top: .6875rem;
    font-size: 1rem;
}

.fourthScreen_content_item_text {
    width: 80%;
    color: #FFFFFF;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.8
}

.fourthScreen_content_item_button {
    width: 80%;
    margin: 40px auto 0;
}

.fourthScreen_content_item_button > img {
    width: 100%;
    height: 100%;
}

/** 第四屏 H5 样式 -- 开始 */

.h5FourthScreen_content {
    width: 90%;
    margin: 0 auto;
    height: calc(var(--screenHeight) - 40px);
    margin-top: 20px;
}

.h5FourthScreen_content_item {
    width: 100%;
    height: calc(100% / 6);
    background-image: url('/r/cms/www/default/img/video/sultion_bg_gray.png');
    background-size: cover;
}

.h5FourthScreen_content_item_active {
    width: 100%;
    height: calc(100% / 3);
    background-image: url('/r/cms/www/default/img/video/sultion_bg_blue.png');
    background-size: cover;
}

.h5FourthScreen_content_item_img {
    width: 12%;
    margin: 0 auto;
    padding-top: 20px;
}

.h5FourthScreen_content_item_img > img {
    width: 100%;
    height: 100%;
}

.h5FourthScreen_content_item_title {
    color: #FFFFFF;
    font-weight: 400;
    font-family: Source Han Sans CN;
    text-align: center;
}

.h5FourthScreen_content_item_title > div:first-child {
    margin-top: 10px;
    font-size: 18px;
}

.h5FourthScreen_content_item_title > div:last-child {
    /*margin-top: 10px;*/
    font-size: 12px;
}

.h5FourthScreen_content_item_text {
    width: 80%;
    color: #FFFFFF;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.8;
    padding-top: 10px;

}

.h5FourthScreen_content_item_text > div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.h5FourthScreen_content_item_button {
    width: 54%;
    /*height: 2.625rem;*/
    margin: 0 auto;
    margin-top: 5px;
}

.h5FourthScreen_content_item_button > img {
    width: 100%;
    height: 100%;
}

.h5FourthScreen_content_item > .h5FourthScreen_content_item_text {
    display: none;
}

.h5FourthScreen_content_item > .h5FourthScreen_content_item_button {
    display: none;
}

.h5FourthScreen_content_item_active > .h5FourthScreen_content_item_text {
    display: block;
}

.h5FourthScreen_content_item_active > .h5FourthScreen_content_item_button {
    display: block;
}

/** 第四屏 H5 样式 -- 开始 */
/** 第四屏样式 -- 结束 */
/** 第五屏样式 -- 开始 */
.fifthScreen {
    display: block;
    background-image: url('/r/cms/www/default/img/video/xwdtBg.jpg');
}


.fifthScreen_content {
    width: 75%;
    margin: 5% auto 0;
}
.fifthScreen_content_h5{
    display: none;
}
.fifthScreen_content_list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fifthScreen_content_list_item{
    width: calc((100% - 60px) / 3);
    background: #FFFFFF;
    border-radius: 5px;
}

.fifthScreen_content_list_item_content{
    width: calc(100% - 60px);
    margin: 40px auto 0;
}
.fifthScreen_content_list_item_content_time{
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
}
.fifthScreen_content_list_item_content_title>a{
    font-weight: bold;
    font-size: 24px;
    color: #5B6E96;
    line-height: 44px;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.fifthScreen_content_list_item_content_img{
    width: 100%;
    height: 225px;
    margin-top: 20px;
}
.fifthScreen_content_list_item_content_img>a>img{
    width: 100%;
    height: 100%;
}
.fifthScreen_content_list_item_content_text{
    height: 50px;
    margin: 20px 0;
}
.fifthScreen_content_list_item_content_text>a{
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.fifthScreen_content_list_item_content_rests{
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}
.fifthScreen_content_list_item_content_rests::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #5B6E95;
    /*left: -10px;*/
    /*z-index: -2;*/
    opacity: 0.2;
    top: 0;
}
.fifthScreen_content_list_item_content_rests_text>a{
    font-weight: 400;
    font-size: 16px;
    color: #5B6E96;
}
.fifthScreen_content_list_item_content_rests_img{
    width: 86px;
    height: 26px;
    background-image: url("/r/cms/www/default/img/video/homeXWlj0.png");
}
/*.fifthScreen_content_list_item:hover{*/
/*    background: #0076E7;*/
/*    color: #FFFFFF;*/
/*}*/
.fifthScreen_content_list_item:hover{
    background: #0076E7;
    .fifthScreen_content_list_item_content_time{
        color: #FFFFFF;
    }
    .fifthScreen_content_list_item_content_title>a{
        color: #FFFFFF;
    }
    .fifthScreen_content_list_item_content_text>a{
        color: #FFFFFF;
    }
    .fifthScreen_content_list_item_content_rests_text>a{
        color: #FFFFFF;
    }
    .fifthScreen_content_list_item_content_rests::after{
        background: #FFFFFF;
        opacity: 1;
    }
    .fifthScreen_content_list_item_content_rests_img{
        background-image: url("/r/cms/www/default/img/video/homeXWlj1.png");
    }
}

/** 第五屏样式 -- 结束 */

/** 首页 -- 结束 */


/** 底部公共样式 -- 开始 */
.sixthScreen {
    width: 100%;
    height: var(--screenHeight);
    position: relative;
    overflow: hidden;
}

.sixthScreen_body {
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.sixthScreen_title {
    text-align: center;
    color: #FFFFFF;
    font-weight: 400;
    font-family: Source Han Sans CN;
    margin-top: 9.375rem;
}

.sixthScreen_title_text {
    font-size: 50px !important;
}

.sixthScreen_title_line {
    font-size: 16px;
    margin-top: 11px;
}

.sixthScreen_content {
    width: 72%;
    margin: 0 auto;
    margin-top: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sixthScreen_content_left {
}

.sixthScreen_content_left_item > div {
    display: flex;
}

.sixthScreen_content_left_item_one {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 400;
}

.sixthScreen_content_left_item_one > div:first-child {
    width: 40px;
    height: 40px;
}

.sixthScreen_content_left_item_one > div:first-child > img {
    width: 100%;
    height: 100%;
}

.sixthScreen_content_left_item_two > div:last-child {
    font-size: 24px !important;
}

.sixthScreen_content_right {
}

.sixthScreen_content_right_img {
    width: 258px;
    height: 258px;
}

.sixthScreen_content_right_img > img {
    width: 100%;
    height: 100%;
}

.sixthScreen_content_right_text {
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 400;
    margin-top: 20px;
}

.sixthScreen_footer {
    position: absolute;
    bottom: .9375rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 400;
    color: #FFFFFF;
    z-index: 10;
    text-align: center;
}
.sixthScreen_footer_text:first-child {
    padding-bottom: 10px;
}

/** 底部公共样式 -- 结束 */


/** 关于我们页面样式 -- start */
/** 公司简介 -- start */
.gsjj_Screen {
    background-image: url('/r/cms/www/default/img/video/gsjjBg.jpg');
}

.gsjj_Screen_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 79px;
}

.gsjj_Screen_content_title {
    text-align: center;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    font-family: Source Han Sans CN;
}

.gsjj_Screen_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
}

.gsjj_Screen_content_text {
    margin-top: 48px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 24px;
    color: #5B6E96;
    line-height: 1.9;
}

/** 公司简介 -- end */
/** 公司文化 -- start */
.gswh_Screen {
    background-image: url(/r/cms/www/default/img/video/gswhBg.jpg);
}

.gswh_Screen_content {
    width: 65%;
    margin: 0 auto;
    margin-top: 80px;
}

.gswh_Screen_content_title {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #fff;
}

.gswh_Screen_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.gswh_Screen_content_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.gswh_Screen_content_text_img {
    width: 462px;
    height: 462px;
}

.gswh_Screen_content_text_img > img {
    width: 100%;
    height: 100%;
}

.gswh_Screen_content_text_text {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 30px;
    color: #FFFFFF;
}

.gswh_Screen_content_text_text > div {
    line-height: 85px;
}

/** 公司文化 -- end */

/** 公司历程 -- start */
.gslcH5{
    display: none;
}
.gslc_Screen {
    background-image: url(/r/cms/www/default/img/video/gslcBg.jpg);
    /*background-color: #000;*/
}
.gslc_Screen_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 51px;
}
.gslc_Screen_content_title {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #fff;
}
.gslc_Screen_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}
.gslc_Screen_content_timer_shaft{
    width: 100%;
    margin-top: 41px;
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    flex-wrap: wrap;
}
.gslc_Screen_content_timer_shaft_item{
    width: calc(100% / 5);
    position: relative;
}
.gslc_Screen_content_timer_shaft_item_text{
    font-family: HuXiaoBo-NanShen;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 20px;
}
.gslc_Screen_content_timer_shaft_item_yuan{
    width: 20px;
    height: 20px;
    background: #0076E7;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    position: absolute;
    top: 73%;
    left: 50%;
    transform: translateX(-50%);
}
.gslc_Screen_content_timer_shaft_item_border{
    /*position: absolute;*/
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.gslc_Screen_content_timer_shaft_item_active>.gslc_Screen_content_timer_shaft_item_text{
    color: #0076E7;
}
#gslcSwiper{
    margin-top: 41px;
}
.gslcSwiperSlideItem{
    width: 100%;
    height: 500px;
    margin: 0 auto;
}
.gslcSwiperSlideItem_body{
    width: 88%;
    margin: 0 auto;
    background: rgba(0,51,153,0.6);
    border-radius: 20px;
    height: 100%;
    display: grid;
    place-items: center;
}
.gslcSwiperSlideItem_body_text{
    width: 94%;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 50px;
}
.gslcSwiperSlideItem_2021>.gslcSwiperSlideItem_body>.gslcSwiperSlideItem_body_text{
    font-size: 20px;
    line-height: 35px;
}
#gslcSwiper>.swiper-button-prev{
    background-image: url("/r/cms/www/default/img/video/gslcLeft.png");
}
#gslcSwiper>.swiper-button-next{
    background-image: url("/r/cms/www/default/img/video/gslcRight.png");
}
#gslcSwiper>.swiper-button-prev.swiper-button-disabled{
    background-image: url("/r/cms/www/default/img/video/gslcLeft.png") !important;
}
#gslcSwiper>.swiper-button-next.swiper-button-disabled{
    background-image: url("/r/cms/www/default/img/video/gslcRight.png") !important;
}
#gslcSwiper>.swiper-button-prev{
    width: 27px;
    height: 50px;
}
#gslcSwiper>.swiper-button-next{
    width: 27px;
    height: 50px;
}

/** 公司荣誉 -- start */

.gsry_Screen {
    background-image: url(/r/cms/www/default/img/video/gsyyBg.jpg);
}

.gsry_Screen_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 51px;
}

.gsry_Screen_content_title {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
}

.gsry_Screen_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 10px;
}

#gsrySwiper {
    margin-top: 41px;
}

#gsrySwiper > .slideItem {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* align-items: center; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
}
.slideItem_body{
    width: 90%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
}

.gsry_Screen_content_swiper_item {
    width: 24%;
    margin: 0 auto;
    /* flex:3 */
    /* height: 293px; */
}

.gsry_Screen_content_swiper_item > div:first-child {
    width: 100%;
    /*height: 200px;*/
}

.gsry_Screen_content_swiper_item > div:first-child img {
    width: 100%;
    height: 100%;
}

.gsry_Screen_content_swiper_item > div:last-child {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #5B6E96;
    line-height: 50px;
}
#gsrySwiper>.swiper-button-prev{
    width: 45px;
    height: 45px;
    background-size: cover;
}
#gsrySwiper>.swiper-button-next{
    width: 45px;
    height: 45px;
    background-size: cover;
}

.gsry-swiper-pagination {
    position: relative;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
    padding: 16px 0;
}

.gsry-swiper-pagination > .swiper-pagination-bullet {
    width: 30px !important;
    height: 6px !important;
    border-radius: 0;
    /* background: #e00f0f !important; */
    /* background-image: url("../img/gsryPagination0.png") !important; */
    background: #000000 !important;
    border-radius: 3px;
    opacity: 0.1;
    margin: 0 15px !important;
    /* opacity: unset; */
}

.gsry-swiper-pagination > .swiper-pagination-bullet-active::before {
    content: none;
}

.gsry-swiper-pagination > .swiper-pagination-bullet-active {
    opacity: 1;
    background-image: url("/r/cms/www/default/img/video/gsryPagination1.png") !important;
}

/** 公司荣誉 -- end */
/** 关于我们页面样式 -- end */


/** 智慧仓储管理平台 -- start */
/** one_zhccglpt -- start */
.one_zhccglpt {
    background-image: url("/r/cms/www/default/img/video/zhccOneBg.png");
}

.one_zhccglpt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 60px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #304066;
}

.one_zhccglpt_content_title {
    font-size: 50px;
    text-align: center;
}

.one_zhccglpt_content_English {
    font-size: 20px;
    margin-top: 11px;
    text-align: center;
}

.one_zhccglpt_content_text {
    font-size: 24px;
    color: #5B6E96;
    line-height: 60px;
    margin-top: 30px;
}

.one_zhccglpt_content_list {
    /*margin-top: 30px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.one_zhccglpt_content_list_item {
    width: calc((100% - 46px) / 3);
    font-family: Source Han Sans CN;
    color: #ffffff;
    background-image: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png");
    margin-top: 30px;
    border-radius: 5px;
}

.one_zhccglpt_content_list_item_title {
    font-weight: bold;
    font-size: 20px;
    padding: 30px 0 10px 20px;
}

.one_zhccglpt_content_list_item_text {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px 20px 20px;
    line-height: 20px;
}

/** one_zhccglpt -- end */
/** two_zhccglpt -- start */
.two_zhccglpt {
    background-image: url("/r/cms/www/default/img/video/zhccTwoBg.png");
}

.two_zhccglpt_content {
    width: 70%;
    margin: 0 auto;
    margin-top: 60px;
}

.two_zhccglpt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    text-align: center;
}

.two_zhccglpt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 11px;
}

.two_zhccglpt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.two_zhccglpt_content_list_item {
    width: calc((100% - 46px) / 3);
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-top: 50px;
}

.two_zhccglpt_content_list_item_title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
}

.two_zhccglpt_content_list_item_text {
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}

/** two_zhccglpt -- end */
/** three_zhccglpt -- start */
.three_zhccglpt {
    background-image: url("/r/cms/www/default/img/video/zhccThreeBg.png");
}

.three_zhccglpt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 60px;
}

.three_zhccglpt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.three_zhccglpt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #5B6E96;
    margin-top: 11px;
    text-align: center;
}

.three_zhccglpt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
}

.three_zhccglpt_content_list_item {
    width: calc((100% - 96px) / 4);
    margin-top: 30px;
    border-radius: 5px;
}

.three_zhccglpt_content_list_item_title {
    width: 100%;
    text-align: center;
    background: #003399;
    color: #ffffff;
    padding: 20px 0;
    font-weight: bold;
    font-size: 22px;
    border-radius: 5px 5px 0 0;
}

.three_zhccglpt_content_list_item_text {
    /*width: 100%;*/
    background: #ffffff;
    font-weight: 400;
    font-size: 18px;
    color: #7E8DAC;
    padding: 40px 30px 50px 30px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
}
.three_zhccglpt_content_list_item_text_text{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
/** three_zhccglpt -- end */
/** 智慧仓储管理平台 -- end */


/** 城市运行管理服务平台 -- start */
/** csyxglfwpt -- start */

.csyxglfwpt_csyxglfwpt {
    background-image: url("/r/cms/www/default/img/video/csyxBg.jpg");
}

.csyxglfwpt_csyxglfwpt_conter {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.csyxglfwpt_csyxglfwpt_conter_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
}

.csyxglfwpt_csyxglfwpt_conter_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 11px;
}

.csyxglfwpt_csyxglfwpt_conter_test {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    margin-top: 40px;
    line-height: 30px;
}

.csyxglfwpt_csyxglfwpt_conter_img {
    width: 85%;
    margin: 50px auto 0;
}

.csyxglfwpt_csyxglfwpt_conter_img > img {
    width: 100%;
    height: 100%;
}

.csyxglfwpt_csyxglfwpt_conter_img_one {
    display: block;
}

.csyxglfwpt_csyxglfwpt_conter_img_two {
    display: none;
}

/** csyxglfwpt -- end */
/** 平台优势 -- start */
.ptys_csyxglfwpt {
    background-image: url("/r/cms/www/default/img/video/ptysBg.jpg");
}

.ptys_csyxglfwpt_content {
    width: 75%;
    margin: 0 auto;
    padding-top: 80px;
}

.ptys_csyxglfwpt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
}

.ptys_csyxglfwpt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin-top: 11px;
}

.ptys_csyxglfwpt_content_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 130px;
}

.ptys_csyxglfwpt_content_list_item {
    color: #ffffff;
    width: 359px;
    margin: 0 auto;

}

.ptys_csyxglfwpt_content_list_item_img {
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.ptys_csyxglfwpt_content_list_item_text {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 59px;
    line-height: 34px;
}

/** 平台优势 -- end */
/** 未来政策规划 -- start */
.wlzcgh_csyxglfwpt {
    background-image: url(/r/cms/www/default/img/video/wlzcghBg.jpg);
}

.wlzcgh_csyxglfwpt-content {
    width: 75%;
    margin: 0 auto;
    margin-top: 80px;
}

.wlzcgh_csyxglfwpt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.wlzcgh_csyxglfwpt_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
}

.wlzcgh_body {
    display: block;
}

.wlzcgh_body_h5 {
    display: none;
}

.wlzcgh_csyxglfwpt_content_listTop {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 110px;
}

.wlzcgh_csyxglfwpt_content_listTop_item {
}

.wlzcgh_csyxglfwpt_content_listTop_item_img {
    width: 200px;
    height: 200px;
}

.wlzcgh_csyxglfwpt_content_listTop_item_img > img {
    width: 100%;
    height: 100%;
}

.wlzcgh_csyxglfwpt_content_listTop_item_text {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 30px;
    color: #003399;
    line-height: 200px;
    text-align: center;
}

.wlzcgh_csyxglfwpt_content_listBottom {
    width: 78%;
    margin: 0 auto;
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
    display: flex;
    justify-content: space-between;
}

.wlzcgh_csyxglfwpt_content_listBottom_item {
    width: 300px;
    height: 226px;
    background-image: url(/r/cms/www/default/img/video/dhkBg.png);
}

.wlzcgh_csyxglfwpt_content_listBottom_item_text {
    padding: 56px 20px 0 20px;
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 30px;
}

/** 未来政策规划 -- end */
/** 基本框架 -- start */
.jbkj_csyxglfwpt {
    background-image: url(/r/cms/www/default/img/video/jbkjBg.jpg);
}

.jbkj_csyxglfwpt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
}

.jbkj_csyxglfwpt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
}

.jbkj_csyxglfwpt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
}

.jbkj_csyxglfwpt_content_img {
    width: 85%;
    /*height: 704px;*/
    margin: 0 auto;
    margin-top: 59px;
    display: block;
}
.jbkj_csyxglfwpt_content_img>p > img {
    width: 100%;
    height: 100%;
}
.jbkj_csyxglfwpt_content_img > img {
    width: 100%;
    height: 100%;
}

.jbkj_csyxglfwpt_content_img_h5 {
    display: none;
    width: 100%;
}

.jbkj_csyxglfwpt_content_img_h5 > img {
    width: 100%;
    height: 100%;
}

/** 基本框架 -- end */
/** 行业应用 -- start */
.hyyy_csyxglfwpt {
    background-image: url("/r/cms/www/default/img/video/hyyyBg.png");
}

.hyyy_csyxglfwpt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
    font-family: Source Han Sans CN;
}

.hyyy_csyxglfwpt_content_title {
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.hyyy_csyxglfwpt_content_English {
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 11px;
    text-align: center;
}

.hyyy_body {
    display: block;
}

.hyyy_body_h5 {
    display: none;
}

.hyyy_csyxglfwpt_content_img {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

.hyyy_csyxglfwpt_content_img > img {
    width: 100%;
}

.hyyy_csyxglfwpt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.hyyy_csyxglfwpt_content_list_item {
    width: calc((100% - 504px) / 9);
    margin-top: 30px;
}

.hyyy_csyxglfwpt_content_list_item_img {
}

.hyyy_csyxglfwpt_content_list_item_img > img {
    width: 100%;
}

.hyyy_csyxglfwpt_content_list_item_text {
    font-weight: bold;
    font-size: 20px;
    color: #5B6E96;
    text-align: center;
    margin-top: 10px;
}

/** 行业应用 -- end */
/** 城市运行管理服务平台 -- end */


/** 智慧养老云平台 -- start */
/** zhyl_one -- start */
.zhyl_one {
    background-image: url("/r/cms/www/default/img/video/zhylOneBg.png");
}

.zhyl_one_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 60px;
    font-family: Source Han Sans CN;
}

.zhyl_one_content_title {
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.zhyl_one_content_English {
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    text-align: center;
    margin-top: 11px;
}

.zhyl_one_content_text {
    font-weight: 500;
    font-size: 25px;
    color: #5B6E96;
    line-height: 60px;
    margin-top: 60px;
}

/** zhyl_one -- end */
/** zhyl_two -- start */
.zhyl_two {
    background-image: url("/r/cms/www/default/img/video/zhylTwoBg.png");
}

.zhyl_two_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 60px;
}

.zhyl_two_content_title,
.zhyl_two_content_English {
    color: #FFFFFF;
}

.zhyl_two_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 90px;
}

.zhyl_two_content_list_item {
    width: calc((100% - 60px) / 4);
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    height: 460px;
}

.zhyl_two_content_list_item_content {
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-top: 80px;
}

.zhyl_two_content_list_item_img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.zhyl_two_content_list_item_img > img {
    width: 100%;
    height: 100%;
}

.zhyl_two_content_list_item_title {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
    margin-top: 69px;
}

.zhyl_two_content_list_item_text {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 38px;
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/** zhyl_two -- end */
/** zhyl_three -- start */
.zhyl_three {
    background-image: url("/r/cms/www/default/img/video/zhylThreeBg.png");
    /*position: relative;*/
}

.zhyl_three_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 30px;
}

.zhyl_three_content_swiper {
    width: 100%;
    position: relative;
    margin-top: 20px;
    display: block;
}

.zhyl_three_h5 {
    display: none;
}

.zhyl_three_slideItem {
    width: 100%;
}

.zhyl_three_slideItemContent {
    width: 80%;
    margin: 0 auto;
}

.zhyl_three_slideItemContent > img {
    width: 100%;
}

#zhylThreeSwiperId > .swiper-button-prev.swiper-button-disabled {
    background-image: url('/r/cms/www/default/img/video/left03.png') !important;
}

/** zhyl_three -- end */
/** 智慧养老云平台 -- end */


/** 综合执法办案平台 -- start */
/** “六位一体”综合行政执法平台 -- start */
.lwyt_zhzfbapt {
    background-image: url("/r/cms/www/default/img/video/sinInOneBg.jpg");
}

.lwyt_zhzfbapt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 79px;
}

.lwyt_zhzfbapt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.lwyt_zhzfbapt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    text-align: center;
    margin-top: 11px;
}

.lwyt_zhzfbapt_content_pc {
    display: block;
}

.lwyt_zhzfbapt_content_h5 {
    display: none;
}

.lwyt_zhzfbapt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.lwyt_zhzfbapt_content_list_item {
    /*width: 218px;*/
    height: 460px;
    color: #5B6E96;
    background-image: url("/r/cms/www/default/img/video/lwytItem.png");
    flex: 1;
    margin: 0 5px;
}

.lwyt_zhzfbapt_content_list_item_active {
    /*width: 300px;*/
    flex: 1.2;
    color: #ffffff;
    background-image: url("/r/cms/www/default/img/video/lwytItemActive.png");
    transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
}

.lwyt_zhzfbapt_content_list_item_body_Box {
    width: 40px;
    height: 4px;
    background: #ffffff;
    margin-top: 20px;
    display: none;
}

.lwyt_zhzfbapt_content_list_item_active .lwyt_zhzfbapt_content_list_item_body_Box {
    display: block;
}

.lwyt_zhzfbapt_content_list_item_body {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 41px;
}

.lwyt_zhzfbapt_content_list_item_body_title {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 20px;
}

.lwyt_zhzfbapt_content_list_item_body_img {
    width: 50px;
    height: 46px;
    margin-top: 52px;
}

.lwyt_zhzfbapt_content_list_item_body_img > img {
    width: 100%;
    height: 100%;
}

.lwyt_zhzfbapt_content_list_item_active .lwyt_zhzfbapt_content_list_item_body_img {
}

.lwyt_zhzfbapt_content_list_item_body_text {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-top: 31px;

}

/** “六位一体”综合行政执法平台 -- end */
/** 解决方案 -- start */
.jjfa_zhzfbapt {
    background-image: url("/r/cms/www/default/img/video/jjfaBg.jpg");
}

.jjfa_zhzfbapt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.jjfa_zhzfbapt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    text-align: center;
}

.jjfa_zhzfbapt_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 12px;
}

.jjfa_zhzfbapt_content_text {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 50px;
    margin-top: 68px;
}

.jjfa_zhzfbapt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 88px;
}

.jjfa_zhzfbapt_content_list_item {
    display: flex;
    /*align-items: center;*/
}

.jjfa_zhzfbapt_content_list_item_img {
    width: 94px;
    /*height: 108px;*/
}

.jjfa_zhzfbapt_content_list_item_img > img {
    /*width: 100%;*/
    /*height: 100%;*/
}

.jjfa_zhzfbapt_content_list_item_body {
    width: calc(100% - 94px);
    margin-left: 31px;

}

.jjfa_zhzfbapt_content_list_item_body_title {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}

.jjfa_zhzfbapt_content_list_item_body_text {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 20px;

}

/*.jjfa_zhzfbapt_content_list_item_body_text>p{*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*    display: -webkit-box;*/
/*    -webkit-box-orient: vertical;*/
/*    -webkit-line-clamp: 1;*/
/*    padding: 5px 0;*/

/*}*/
.jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
    padding: 10px 0;
}

/** 解决方案 -- end */
/** 服务支持 -- start */
.fwzc_zhzfbapt {
    background-image: url("/r/cms/www/default/img/video/fwzcBg.jpg");
}

.fwzc_zhzfbapt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 80px;
}

.fwzc_zhzfbapt_content_title {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
}

.fwzc_zhzfbapt_content_English {
    text-align: center;
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 12px;
}

.fwzc_zhzfbapt_content_list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
}

.fwzc_zhzfbapt_content_list_item {
    width: 705px;
    height: 220px;
}

.fwzc_zhzfbapt_content_list_item:first-child {
    background-image: url("/r/cms/www/default/img/video/fwzc01.png");
}

.fwzc_zhzfbapt_content_list_item:nth-child(2) {
    background-image: url("/r/cms/www/default/img/video/fwzc02.png");
}

.fwzc_zhzfbapt_content_list_item:nth-child(3) {
    background-image: url("/r/cms/www/default/img/video/fwzc03.png")
}

.fwzc_zhzfbapt_content_list_item:nth-child(4) {
    background-image: url("/r/cms/www/default/img/video/fwzc04.png")
}

.fwzc_zhzfbapt_content_list_item_title {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 22px;
    color: #0076E7;
    line-height: 30px;
    margin-top: 79px;
    margin-left: 219px;
}

.fwzc_zhzfbapt_content_list_item_ul {
    display: flex;
    margin-top: 20px;
    margin-left: 219px;
}

.fwzc_zhzfbapt_content_list_item_ul > li {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 30px;
}

.fwzc_zhzfbapt_content_list_item_ul > li:nth-child(2n) {
    /*border-left: 1px solid #5B6E96;*/
    margin: 0 6px;
}

/** 服务支持 -- start */

/** 全流程智能制造管理平台 -- start */
.qlcznzz_one {
    background-image: url("/r/cms/www/default/img/video/qlcznzzOneBg.png");
}

.qlcznzz_one_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
    font-family: Source Han Sans CN;
}

.qlcznzz_one_content_title {
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.qlcznzz_one_content_English {
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.qlcznzz_one_content_text {
    font-weight: 500;
    font-size: 24px;
    color: #5B6E96;
    line-height: 60px;
    margin-top: 40px;
}

.qlcznzz_one_content_list {
    width: 80%;
    margin: 60px auto 0;
}

.qlcznzz_one_content_h5 {
    display: none;
}

.qlcznzz_one_content_list_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qlcznzz_one_content_list_item_img {
    width: calc((100% - 60px) / 7);
}

.qlcznzz_one_content_list_item_img > img {
    width: 100%;
    height: 100%;
}

.qlcznzz_one_content_list_item:nth-child(2) {
    justify-content: space-around;
}

.qlcznzz_two {
    background-image: url("/r/cms/www/default/img/video/qlcznzzTwoBg.png");
}

.qlcznzz_two_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
    font-family: Source Han Sans CN;
}

.qlcznzz_two_content_title {
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    text-align: center;
}

.qlcznzz_two_content_English {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    text-align: center;
}

.qlcznzz_two_content_img {
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
}

.qlcznzz_two_content_img > img {
    width: 100%;
    height: 100%;
}

.qlcznzz_two_content_img_h5 {
    display: none;
}

.qlcznzz_three {
    background-image: url("/r/cms/www/default/img/video/qlcznzzThreeBg.png");
}

.gkgq_one {
    background-image: url("/r/cms/www/default/img/video/gkgqOneBg.jpg");
}

.gkgq_one_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.gkgq_one_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.gkgq_one_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.gkgq_one_content_text {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 22px;
    color: #5B6E96;
    line-height: 50px;
    margin-top: 20px;
}

.gkgq_two {
    background-image: url("/r/cms/www/default/img/video/gkgqTwoBg.jpg");
}

.gkgq_two_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.gkgq_two_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    text-align: center;
}

.gkgq_two_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    text-align: center;
}

.gkgq_two_content_list {
    display: flex;
    height: 600px;
    margin-top: 60px;
}

.gkgq_two_content_list_h5 {
    display: none;
}

.gkgq_two_content_list_item {
    flex: 1;
    transition: flex 0.3s;
    background-image: url(/r/cms/www/default/img/video/gkgqTwoNo1Bg.png);
    background-size: cover;
}

.gkgq_two_content_list_item:nth-child(2n) {
    background-image: url(/r/cms/www/default/img/video/gkgqTwoNo2Bg.png);
}

.gkgq_two_content_list_item_active {
    flex: 1.5;
    /* 滑过时当前项目占据更多空间 */
    height: 100%;
    background-image: url('/r/cms/www/default/img/video/gkgqTwoSelectBg.png') !important;
}

.gkgq_two_content_list_item_content {
    width: 85%;
    margin: 0 auto;
    margin-top: 220px;
}

.gkgq_two_content_list_item_img {
    width: 50px;
    height: 50px;
    margin: 0 auto;

}

.gkgq_two_content_list_item_img > img {
    width: 100%;
    height: 100%;
}

.gkgq_two_content_list_item_title {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    padding: 30px 0;
}

.gkgq_two_content_list_item_text {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 30px;
    display: none;
    text-align: center;
}

.gkgq_two_content_list_item_active > .gkgq_two_content_list_item_content {
    margin-top: 150px;
}

.gkgq_two_content_list_item_active > .gkgq_two_content_list_item_content > .gkgq_two_content_list_item_title {
    font-size: 30px;
}

.gkgq_two_content_list_item_active > .gkgq_two_content_list_item_content > .gkgq_two_content_list_item_text {
    display: block;
}

.gkgq_three {
    background-image: url("/r/cms/www/default/img/video/gkgqThreeBg.jpg");
}

.gkgq_three_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.gkgq_three_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.gkgq_three_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.gkgq_three_content_text {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 22px;
    color: #5B6E96;
    line-height: 50px;
    margin-top: 40px;
}

.gkgq_three_content_list {
    display: flex;
    margin-top: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.gkgq_three_content_list_item {
    width: calc((100% - 60px) / 3);
    margin-bottom: 20px;
}

.gkgq_three_content_list_item > img {
    width: 100%;
    height: 100%;
}

.szls_one {
    background-image: url("/r/cms/www/default/img/video/szls_bg.jpg");
}

.szls_one_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 60px;
}

.szls_one_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.szls_one_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.szls_one_content_text {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 22px;
    color: #5B6E96;
    line-height: 50px;
    margin-top: 40px;
    text-align: center;
}

.szls_one_content_list {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.szls_one_content_list_item {
    width: calc((100% - 60px) / 3);
    /*display: flex;*/
    /*align-items: center;*/
    background: rgba(255,255,255,0);
    border-radius: 5px;
    border: 1px solid #003399;
    height: 370px;
}

.szls_one_content_list_item_left {
    width: 100px;
    margin: 30px auto 0;
}

.szls_one_content_list_item_left > img {
    width: 100%;
    height: 100%;
}

.szls_one_content_list_item_right {
    width: 90%;
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 44px;
    padding: 24px 0 0 0;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.szls_kj {
    background-image: url("/r/cms/www/default/img/video/szlsKjBg.jpg");
}

.szls_kj_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.szls_kj_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #FFFFFF;
    text-align: center;
}

.szls_kj_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    text-align: center;
}

.szls_kj_content_text {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 20px;
}

.szls_kj_content_img {
    width: 60%;
    margin: 0 auto;
}

.szls_kj_content_img > img {
    width: 100%;
    height: 100%;
}

.szls_cj {
    background-image: url("/r/cms/www/default/img/video/szlsCjBg.png");
}

.szls_cj_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.szls_cj_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
    margin-top: 20px;
}

.szls_cj_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.szls_cj_content_body {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    /*align-items: center;*/
}

.szls_cj_content_body_left {
    border: 1px solid #003399;
    border-radius: 5px;
    width: 62.5%;
}

.szls_cj_content_body_left_img {
    width: 100%;
}

.szls_cj_content_body_left_img > img {
    width: 100%;
    height: 100%;
}

.szls_cj_content_body_left_title {
    font-weight: bold;
    font-size: 26px;
    color: #5B6E96;
    padding: 18px 0 18px 20px;
}

.szls_cj_content_body_left_text {
    font-weight: 400;
    font-size: 20px;
    color: #5B6E96;
    line-height: 24px;
    padding: 0 0 18px 20px;
}

.szls_cj_content_body_right {
    width: 36%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

.szls_cj_content_body_right_item {
    border: 1px solid #003399;
    border-radius: 5px;
    width: calc((100% - 20px) / 2);
    height: 290px;
}

.szls_cj_content_body_right_item:nth-child(3), .szls_cj_content_body_right_item:nth-child(4) {
    margin-top: 20px;
}

.szls_cj_content_body_right_item_img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    margin-top: 60px;
}

.szls_cj_content_body_right_item_img > img {
    width: 100%;
    height: 100%;
}

.szls_cj_content_body_right_item_title {
    font-weight: bold;
    font-size: 26px;
    color: #003399;
    text-align: center;
    margin-top: 20px;
}

.szls_ys {
    background-image: url("/r/cms/www/default/img/video/szlsYsBg.jpg");
}

.szls_ys_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.szls_ys_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

.szls_ys_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    margin-top: 12px;
    text-align: center;
}

.szls_ys_content_list {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.szls_ys_content_list_item {
    width: calc((100% - 60px) / 4);
    border: 1px solid #ffffff;
    border-radius: 5px;
    height: 518px;
}

.szls_ys_content_list_item_img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-top: 60px;
}

.szls_ys_content_list_item_img > img {
    width: 100%;
    height: 100%;
}

.szls_ys_content_list_item_title {
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 0;
}

.szls_ys_content_list_item_text {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    width: 85%;
    margin: 0 auto;
    line-height: 30px;
}

.szls_zs {
    background-image: url("/r/cms/www/default/img/video/szlsZsBg.jpg");
}

.szls_zs_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.szls_zs_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
    margin-top: 20px;
}

.szls_zs_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #304066;
    margin-top: 12px;
    text-align: center;
}

.szls_zs_content_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.szls_zs_content_body_h5 {
    display: none;
}

.szls_zs_content_body_left {
    width: 62.5%;
}

.szls_zs_content_body_left > img {
    width: 100%;
    height: 100%;
}

.szls_zs_content_body_right {
    width: 36%;
}

.szls_zs_content_body_right_title {
    font-weight: bold;
    font-size: 40px;
    color: #5B6E96;
}

.szls_zs_content_body_right_text {
    font-weight: 400;
    font-size: 20px;
    color: #5B6E96;
    line-height: 40px;
    margin-top: 20px;
}

.dsj_fa {
    background-image: url("/r/cms/www/default/img/video/dsjFaBg.png");
}

.dsj_fa_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.dsj_fa_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.dsj_fa_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    color: #304066;
}

.dsj_fa_content_body {
    margin-top: 60px;
}

.dsj_fa_content_body_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.dsj_fa_content_body_line_item {
    width: calc((100% - 60px) / 4);
    position: relative;
    margin-top: 20px;
}

.dsj_fa_content_body_line_itemBig {
    width: calc((100% - 20px) / 2);
}

.dsj_fa_content_body_line_item_img {
    width: 100%;
}

.dsj_fa_content_body_line_item_img > img {
    width: 100%;
    height: 100%;
}

.dsj_fa_PC {
    display: block;
}

.dsj_fa_H5 {
    display: none;
}

.dsj_fa_content_body_line_item_title {
    position: absolute;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    top: 106px;
    left: 20px;
}

.dsj_fa_content_body_line_item_text {
    position: absolute;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    top: 159px;
    left: 20px;
    letter-spacing: 2px;
    line-height: 30px;
}

.dsj_sjzt {
    background-image: url("/r/cms/www/default/img/video/dsjSjztBg.png");
}

.dsj_sjzt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.dsj_sjzt_content_title {
    font-family: Source Han Sans CN;

    font-weight: 500;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
}

.dsj_sjzt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    color: #ffffff;
}

.dsj_sjzt_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dsj_sjzt_content_list_item {
    width: calc(100% / 3);
    border-bottom: 1px solid #ffffff;
    cursor: pointer;
}

.dsj_sjzt_content_list_item_text {
    font-weight: bold;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    margin: 20px;
}

.dsj_sjzt_content_list_item_active {
    color: #0076E7;
    border-bottom: 2px solid #0076E7;
}

.dsj_sjzt_content_list_item_active > .dsj_sjzt_content_list_item_text {
    color: #0076E7;
}

.dsj_sjzt_content_body {
    color: #ffffff;
}

.dsj_sjzt_content_body_one {
    display: block;
}

.dsj_sjzt_content_body_two, .dsj_sjzt_content_body_three {
    display: none;
}

.dsj_sjzt_content_body_one_list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    /*align-items: center;*/
}

.dsj_sjzt_content_body_one_list_item {
    width: calc(100% / 3);
}

.dsj_sjzt_content_body_one_list_item_yuan {
    width: 160px;
    height: 160px;
    background: rgba(0, 118, 231, 0.36);
    border-radius: 50%;
    margin: 50px auto;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    text-align: center;
    line-height: 160px;
}

.dsj_sjzt_content_body_one_list_item_text {
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
}

.dsj_sjzt_content_body_two_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 195px;
}

.dsj_sjzt_content_body_two_content_right {
    width: 31.9%;
}

.dsj_sjzt_content_body_two_content_right > img {
    width: 100%;
    height: 100%;
}

.dsj_sjzt_content_body_two_content_left {
    width: 64%;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 54px;
}

.dsj_sjzt_content_body_three_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.dsj_sjzt_content_body_three_content_right {
    width: 31.9%;
}

.dsj_sjzt_content_body_three_content_right > img {
    width: 100%;
    height: 100%;
}

.dsj_sjzt_content_body_three_content_left {
    width: 64%;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 40px;
}

.dsj_sjzt_content_body_three_content_left_title {
    font-weight: bold;
}

.dsj_ys {
    background-image: url("/r/cms/www/default/img/video/dsjYsBg.png");
}

.dsj_ys_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.dsj_ys_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
    margin-top: 20px;
}

.dsj_ys_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    color: #304066;
}

.dsj_ys_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.dsj_ys_content_list_item {
    width: calc((100% - 81px) / 4);
    height: 540px;
    background-image: url("/r/cms/www/default/img/video/dsjYsItemBg.png");
    position: relative;
}

.dsj_ys_content_list_item_img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dsj_ys_content_list_item_title {
    position: absolute;
    left: 40px;
    top: 80px;
    font-weight: bold;
    font-size: 22px;
    color: #5B6E96;
}

.dsj_ys_content_list_item_text {
    width: calc(100% - 80px);
    position: absolute;
    left: 40px;
    top: 140px;
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 36px;
}

.xwdt {
    background-image: url("/r/cms/www/default/img/video/xwdtNewBg.jpg");
}

.xwdt_content {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px;
}

.xwdt_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
}

.xwdt_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    color: #304066;
}

.xwdt_content_body {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.xwdt_content_body_h5 {
    display: none;
}

.xwdt_content_body_zuixin {
    width: 100%;
}

.xwdt_content_body_zuixin_list{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.xwdt_content_body_zuixin_list_contet{
    width: calc((100% - 60px) / 3);
    background-color: #FFFFFF;
    border-radius: 5px;
}
.xwdt_content_body_zuixin_list_item{
    width: calc(100% - 60px);
    margin: 30px auto 0;
}
.xwdt_content_body_zuixin_list_item_img{
    width: 100%;
    height: 200px;
}
.xwdt_content_body_zuixin_list_item_img>a>img{
    width: 100%;
    height: 100%;
}
.xwdt_content_body_zuixin_list_item_title>a{
    font-weight: bold;
    font-size: 20px;
    color: #5B6E96;
    margin-top: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.xwdt_content_body_zuixin_list_item_text{
    height: 60px;
    margin-top: 20px;
}
.xwdt_content_body_zuixin_list_item_text>a{
    font-weight: 400;
    font-size: 18px;
    color: #5B6E96;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.xwdt_content_body_zuixin_list_item_rests{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-bottom: 30px;
}
.xwdt_content_body_zuixin_list_item_rests_text>a{
    font-weight: 400;
    font-size: 16px;
    color: #0076E7;
}
.xwdt_content_body_zuixin_list_item_rests_time{
    font-weight: 400;
    font-size: 16px;
    color: #5B6E96;
}


.xwdt_content_body_hangye {
    width: 82%;
    display: none;
}

.xwdt_content_body_list {
    width: 100%;
    display: flex;
}

.xwdt_content_body_list_item {
    width: calc(100% / 3);
    border-left: 1px solid #D1D7E3;
}

.xwdt_content_body_list_item:last-child {
    border-right: 1px solid #D1D7E3;
}

.xwdt_content_body_list_item_content {
    width: 90%;
    margin: 50px auto 40px;
}

.xwdt_content_body_list_item_time_data {
    font-weight: 500;
    font-size: 50px;
    color: #304066;
}

.xwdt_content_body_list_item_time {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #5B6E96;
    padding: 20px 0;
}

.xwdt_content_body_list_item_title {
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;

}

.xwdt_content_body_list_item_title > a {
    color: #5B6E96;
    font-weight: 500;
}

.xwdt_content_body_list_item_title > a:hover {
    color: #5B6E96;
}

.xwdt_content_body_list_item_img {
    width: 100%;
    height: 200px;
    padding: 20px 0 0 0;
}

.xwdt_content_body_list_item_img > a > img {
    width: 100%;
    height: 100%;
}

.xwdt_content_body_list_item_text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: 400;
    font-size: 14px;
    color: #5B6E96;
    line-height: 20px;
    margin-top: 10px;
    height: 40px;
}

.xwdt_content_body_tab {
    width: 18%;
}

.xwdt_content_body_tab_item {
    font-weight: 500;
    font-size: 30px;
    color: #484D57;
    display: flex;
    align-items: center;
    /*margin-top: 20px;*/
}

.xwdt_content_body_tab_item_line {
    width: 40px;
    height: 4px;
}

.xwdt_content_body_tab_item_title {
    margin-left: 10px;
    cursor: pointer;
}

.xwdt_content_body_tab_active > .xwdt_content_body_tab_item_title {
    color: #304066;
}

.xwdt_content_body_tab_active > .xwdt_content_body_tab_item_line {
    background: #304066;
}

.currPageClass {
    width: 34px;
    height: 34px;
    background: #0076E7;
    color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #7E8DAC;
    display: inline-block;
    font-weight: 400;
    font-size: 19px;
    text-align: center;
    line-height: 34px;
}

.currPageClass:hover {
    color: #FFFFFF;
}

.norPageClass {
    width: 34px;
    height: 34px;
    background: transparent;
    /*background-image: url("/r/cms/www/default/img/video/pageBg.png");*/
    color: #7E8DAC;
    border-radius: 10px;
    border: 1px solid #7E8DAC;
    display: inline-block;
    font-weight: 400;
    font-size: 19px;
    text-align: center;
    line-height: 34px;
}

.norPageClass:hover {
    background: #0076E7;
    color: #FFFFFF;
}

.ellipsisClass {
    width: 34px;
    height: 34px;
    background: transparent;
    color: #7E8DAC;
    border-radius: 10px;
    border: 1px solid #7E8DAC;
    display: inline-block;
    font-weight: 400;
    font-size: 19px;
    text-align: center;
    line-height: 34px;
}

.nextPageClass {
    width: 36px;
    height: 36px;
    display: inline-block;
    background-image: url("/r/cms/www/default/img/video/nextPage.png");
}

.previousPageClass {
    width: 36px;
    height: 36px;
    display: inline-block;
    background-image: url("/r/cms/www/default/img/video/previousPage.png");
    /*margin-right: 10px;*/
}

.new_page_sxp{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.new_page_sxp>.col-xs-12{
    width: 50%;
}
.new_page_sxp>.col-xs-12:last-child{
   text-align: right;
}

/*.optForNextPageClass:hover{*/
/*    background-image: url("/r/cms/www/default/img/video/right1.png");*/
/*    background-size: cover;*/
/*}*/
/*.optForPreviousPageClass:hover{*/
/*    background-image: url("/r/cms/www/default/img/video/left1.png");*/
/*    background-size: cover;*/
/*}*/
.pagination > div {
    display: flex;
    align-items: center;
}

.lxwm {
    background-image: url("/r/cms/www/default/img/video/lxwmBg.jpg");
}

.lxwm_content {
    width: 75%;
    margin: 40px auto 0;

}

.lxwm_content_title {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 50px;
    color: #304066;
    text-align: center;
    margin-top: 40px;
}

.lxwm_content_English {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
    text-align: center;
    color: #304066;
}
.lxwm_content_body{
    width: 100%;
    display: flex;
    background-color: #ffffff;
    border-radius: 50px 0 50px 0;
    justify-content: space-between;
    margin-top: 40px;
}
.lxwm_content_body_h5{
    display: none;
}
.lxwm_content_body_left{
    margin-left: 82px;
    margin-top: 130px;
    width: calc(100% - 82px - 41% - 100px);
}
.lxwm_content_body_left_title{
    font-weight: bold;
    font-size: 30px;
    color: #484D57;
}
.lxwm_content_body_left_text{
    font-weight: bold;
    font-size: 26px;
    color: #E96D41;
    margin-top: 40px;
}

.lxwm_content_body_left_list{
    display: flex;
    justify-content: space-between;
    margin-top: 121px;
}
.lxwm_content_body_left_list_item{
    width: 130px;
}
.lxwm_content_body_left_list_item_img{
    width: 80px;
    margin: 0 auto;
}
.lxwm_content_body_left_list_item_img>img{
    width:100%;
    height: 100%;
}
.lxwm_content_body_left_list_item_title{
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
    margin-top: 28px;
    text-align: center;
}

.lxwm_content_body_right{
    width: 41%;
    margin: 50px;
}
.lxwm_content_body_right_img{
    width: 100%;
}
.lxwm_content_body_right_img>img{
    width: 100%;
    height: 100%;
}


.lxwm_content_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.lxwm_content_list_h5 {
    display: none;
}
.lxwm_content_list_h5_left{
    width: 100%;
    height: 300px;
    border-radius: 5px 5px 0 0;
}
.lxwm_content_list_h5_left_img{
    width: 100%;
    height: 100%;
}
.lxwm_content_list_h5_left_img>img{
    width: 100%;
    height: 100%;
}
.lxwm_content_list_h5_right{
    width: 100%;
    text-align: center;
    background: #fff;
    border-radius:  0 0 5px 5px;
}
.lxwm_content_list_h5_right_title,.lxwm_content_list_h5_right_text,.lxwm_content_list_h5_right_bottom{
    width: 90%;
    margin: 0 auto;
}
.lxwm_content_list_h5_right_title{
    font-weight: bold;
    font-size: 20px;
    color: #484D57;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lxwm_content_list_h5_right_text{
    font-weight: 500;
    font-size: 16px;
    color: #5B6E96;
    line-height: 40px;
    padding: 20px 0;
}
.lxwm_content_list_h5_right_bottom{
    font-weight: 500;
    font-size: 16px;
    color: #5B6E96;
    padding: 0 0 20px 0;
}
.lxwm_content_list_h5_right_bottom>span:last-child{
    color: #E96D41;
}
.lxwm_content_list_item {
    width: calc((100% - 90px) / 3);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    height: 550px;
    text-align: center;
    position: relative;
}

.lxwm_content_list_item_img {
    width: 60px;
    height: 60px;
    margin: 40px auto 0;
}

.lxwm_content_list_item_title {
    font-weight: bold;
    font-size: 30px;
    color: #484D57;
    padding: 40px 0 20px;

}

.lxwm_content_list_item_text {
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
    /*line-height: 30px;*/
}

.lxwm_content_list_item_text > p {
    padding: 20px 0;
}

.lxwm_content_list_item_bottom {
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

.lxwm_content_list_item_bottom > span:last-child {
    color: #E96D41;
}

.lxwm_content_list_left{
    width: 50%;
    height: 552px;
    border-radius: 5px 0px 0px 5px;
}
.lxwm_content_list_left_img{
    width: 100%;
    height: 100%;
}
.lxwm_content_list_left_img>img{
    width: 100%;
    height: 100%;
}
.lxwm_content_list_right{
    width: 50%;
    background: #FFFFFF;
    border-radius: 0px 5px 5px 0px;
}
.lxwm_content_list_right_title{
    width: 72%;
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: bold;
    font-size: 30px;
    color: #484D57;
    padding: 80px 0 40px 0;
}
.lxwm_content_list_right_text{
    width: 72%;
    margin: 0 auto;
    padding: 62px 0 49px 0;
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
    line-height: 50px;
}
.lxwm_content_list_right_text>a{
    color: #5B6E96;
}
.lxwm_content_list_right_bottom{
    width: 72%;
    margin: 0 auto;
    padding: 0 0 70px 0;
    font-weight: 500;
    font-size: 20px;
    color: #5B6E96;
}
.lxwm_content_list_right_bottom>span:last-child{
    color: #E96D41;
}


@media screen and (max-width: 499.99px) {
    :root {
        --headerHeight: 60px;
    }

    .header {
        background: #003399;
    }

    .pcLogo {
        display: none;
    }

    .h5Logo {
        display: block;
        margin-top: 14px;

    }

    .menu {
        display: none;
    }
    .header_conter{
        justify-content: space-between;
    }
    .h5menu {
        width: 6.63%;
        display: block;
        cursor: pointer;
        margin-top: 18px;
    }

    .nav {
        display: none;
    }

    .logo {
        width: 50%;
        padding-left: 0;
    }

    .swiper-pagination {
        display: none;
    }

    .paginationLengthen {
        display: none;
    }
    .firstScreen_content_item_img_img{
        width: 80%;
    }

    .carousel-indicators > li {
        width: 100px;
    }

    .carsouselTitle {
        margin-top: 55%;
        font-size: 28px;
    }

    .carousel-indicators {
        bottom: 30%;
    }

    .enforcement {
        margin-top: 25%;
    }

    .carsouselSubTitle {
        /*margin-top: 10px;*/
        font-size: 12px;
    }

    .carsouselImg {
        width: 80px;
        height: 80px;
    }

    .carsouselImg > img {
        width: 100%;
        height: 100%;
    }

    .enforcementItemImg {
        width: 60px;
        height: 60px;
    }

    .enforcementItemText {
        font-size: 15px;
        margin-top: 20px;
    }

    .secondScreen_content {
        width: 90%;
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 14px;
        color: #5B6E96;
        margin: 0 auto;
        margin-top: 26px;
        line-height: 1.9;
    }

    .secondScreen_content_more {
        width: 90%;
        font-size: 16px;
        margin-top: 20px;
    }

    .secondScreen_content_img {
        /*margin-top: 80px;*/
        width: 80%;
    }

    .secondScreen_content_img > div {
        width: 156px;
        margin-top: 20px;
    }

    .mouseClass {
        display: none;
    }

    .secondScreen {
        background-image: url('/r/cms/www/default/img/video/h5IndexTwoBg.png');
        background-size: cover;
    }

    .thirdScreen {
        display: none;
    }

    .h5ThirdScreen {
        display: block;
        background-image: url("/r/cms/www/default/img/video/h5IndexThrenBg.jpg");
        background-size: cover;
    }

    .h5FourthScreen {
        display: block;

    }

    .fourthScreen {
        display: none;
    }


    .sixthScreen_title {
        text-align: center;
        color: #FFFFFF;
        font-weight: 400;
        font-family: Source Han Sans CN;
        margin-top: 100px;
    }

    .sixthScreen_title_text {
        font-size: 30px !important;
    }

    .sixthScreen_title_line {
        font-size: 14px;
        margin-top: 10px;
    }

    .sixthScreen_content {
        width: 72%;
        margin: 0 auto;
        margin-top: 5.5rem;
        display: inherit;
    }

    .sixthScreen_content_left {
        width: 100%;
    }

    .sixthScreen_content_left_item > div {
        display: flex;
    }

    .sixthScreen_content_left_item_one {
        color: #FFFFFF;
        font-size: 20px;
        font-weight: 400;
    }

    .sixthScreen_content_left_item_one > div:first-child {
        width: 30px;
        height: 30px;
    }

    .sixthScreen_content_left_item_one > div:first-child > img {
        width: 100%;
        height: 100%;
    }

    .sixthScreen_content_left_item_two > div:first-child {
        /*width: 44px;*/
        display: none;

    }

    .sixthScreen_content_left_item_two > div:last-child {
        font-size: 16px !important;
        margin-left: 30px;
    }

    .sixthScreen_content_right {
        width: 100%;
    }

    .sixthScreen_content_right_img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        margin-top: 50px;
    }

    .sixthScreen_content_right_img > img {
        width: 100%;
        height: 100%;
    }

    .sixthScreen_content_right_text {
        text-align: center;
        font-size: 14px;
        color: #FFFFFF;
        font-weight: 400;
        margin-top: 11px;
    }

    .sixthScreen_footer {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 400;
        color: #FFFFFF;
        z-index: 10;
        text-align: center;
        width: 100%;
        font-size: 12px;
    }

    .sixthScreen_footer_text:first-child {
        padding-bottom: 10px;
    }



    .gsjj_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_title {
        font-size: 44px;
    }

    .gsjj_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gsjj_Screen_content_text {
        font-size: 15px !important;
        line-height: 1.8;
    }

    .gswh_Screen {
        background-image: url(/r/cms/www/default/img/video/gswhH5Bg.jpg);
        background-size: cover;
    }

    .gswh_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gswh_Screen_content_title {
        font-size: 44px;
    }

    .gswh_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gswh_Screen_content_text {
        display: inherit;
    }

    .gswh_Screen_content_text_img {
        width: 60%;
        height: 40%;
        margin: 0 auto;
    }

    .gswh_Screen_content_text_text {
        font-size: 18px;
        text-align: center;
        margin: 80px 0 0 0;
    }

    .gswh_Screen_content_text_text > div {
        line-height: 50px;
    }

    .gsry_Screen {
        background-image: url(/r/cms/www/default/img/video/gsyyH5Bg.jpg);
        background-size: cover;
    }

    .gsry_Screen_content {
        width: 100%;
    }

    .gsry_Screen_content_title {
        font-size: 44px;
    }

    .gsry_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .slideItem_body{
             width: 80%;
         }
    #gsrySwiper>.swiper-button-prev{
        width: 35px;
        height: 35px;
        background-size: cover;
    }
    #gsrySwiper>.swiper-button-next{
        width: 35px;
        height: 35px;
        background-size: cover;
    }

    .gsry_Screen_content_swiper_item {
        width: 46.8%;
        /*margin: 0;*/
    }

    .gsry_Screen_content_swiper_item:nth-child(2n) {
        margin-left: 20px;
    }

    .gsry_Screen_content_swiper_item > div:first-child {
        width: 100%;
        height: auto;
    }

    .gsry_Screen_content_swiper_item > div:last-child {
        font-size: 12px;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .one_zhccglpt {
        background-image: url(/r/cms/www/default/img/video/zhccOneH5Bg.png);
        background-size: cover;
    }

    .one_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 24px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 34px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 12px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 26px) / 2);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png");
        background-size: 100% 100%;
        margin-top: 10px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 16px;
        padding: 16px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 12px;
        padding: 6px 17px 20px 20px;
        line-height: 20px;

    }
    .one_zhccglpt_content_list_item_text_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .two_zhccglpt {
        background-image: url("/r/cms/www/default/img/video/zhccTwoH5Bg.png");
    }

    .two_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .two_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
    }

    .two_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        margin-top: 11px;
    }

    .two_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .two_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 2);
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
        margin-top: 50px;
    }

    .two_zhccglpt_content_list_item_img {
        width: 90px;
        margin: 0 auto;
    }

    .two_zhccglpt_content_list_item_img > img {
        width: 100%;
    }

    .two_zhccglpt_content_list_item_title {
        font-size: 16px;
        font-weight: bold;
        margin-top: 20px;
    }

    .two_zhccglpt_content_list_item_text {
        font-size: 12px;
        font-weight: 400;
        margin-top: 10px;
        height: 24px;
        line-height: 20px;
    }

    .three_zhccglpt {
        background-image: url("/r/cms/www/default/img/video/zhccThreeH5Bg.png");
    }

    .three_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .three_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .three_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        margin-top: 11px;
        text-align: center;
    }

    .three_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }

    .three_zhccglpt_content_list_item {
        width: calc((100% - 14px) / 2);
        margin-top: 20px;
    }

    .three_zhccglpt_content_list_item_title {
        width: 100%;
        text-align: center;
        background: #003399;
        color: #ffffff;
        padding: 10px 0;
        font-weight: bold;
        font-size: 16px;
    }

    .three_zhccglpt_content_list_item_text {
        /*width: 100%;*/
        background: #ffffff;
        font-weight: 400;
        font-size: 12px;
        color: #7E8DAC;
        padding: 10px;
        line-height: 24px;
        height: 90px;
    }


    .csyxglfwpt_csyxglfwpt_conter {
        width: 90%;
        margin-top: 60px;
    }

    .csyxglfwpt_csyxglfwpt_conter_title {
        font-size: 38px;
    }

    .csyxglfwpt_csyxglfwpt_conter_English {
        font-size: 14px;
    }

    .csyxglfwpt_csyxglfwpt_conter_test {
        font-size: 16px;
        line-height: 40px;
    }

    .csyxglfwpt_csyxglfwpt_conter_img_one {
        display: none;
    }

    .csyxglfwpt_csyxglfwpt_conter_img_two {
        display: block;
    }

    .ptys_csyxglfwpt {
        background-image: url("/r/cms/www/default/img/video/ptysBgH5.jpg");
        background-size: cover;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }

    .wlzcgh_csyxglfwpt {
        background-image: url("/r/cms/www/default/img/video/wlzcghBgH5.jpg");
        background-size: cover;
    }

    .wlzcgh_body {
        display: none;
    }

    .wlzcgh_csyxglfwpt-content {
        width: 90%;
    }

    .wlzcgh_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .wlzcgh_csyxglfwpt_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .wlzcgh_body_h5 {
        display: block;
        width: 100%;
        margin-top: 40px;
    }

    .wlzcgh_body_h5 > img {
        width: 100%;
    }

    .jbkj_csyxglfwpt {
        background-image: url("/r/cms/www/default/img/video/jbkjBgH5.jpg");
        background-size: cover;
    }

    .jbkj_csyxglfwpt_content {
        width: 90%;
        margin-top: 70px;
    }

    .jbkj_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .jbkj_csyxglfwpt_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .jbkj_csyxglfwpt_content_img {
        display: none;
    }

    .jbkj_csyxglfwpt_content_img_h5 {
        display: block;
        margin-top: 80px;
    }

    .hyyy_csyxglfwpt {
        background-image: url("/r/cms/www/default/img/video/hyyyBg.png");
    }

    .hyyy_csyxglfwpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
        font-family: Source Han Sans CN;
    }

    .hyyy_csyxglfwpt_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .hyyy_csyxglfwpt_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        margin-top: 11px;
        text-align: center;
    }

    .hyyy_body {
        display: none;
    }

    .hyyy_body_h5 {
        display: block;
    }

    .hyyy_body_h5_text {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 18px;
        color: #5B6E96;
        line-height: 32px;
        margin-top: 30px;
    }

    .hyyy_body_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hyyy_body_h5_list_item {
        width: calc((100% - 10px) / 2);
        margin-top: 20px;
    }

    .hyyy_body_h5_list_item_img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_img > img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 12px;
        color: #5B6E96;
        line-height: 30px;
        text-align: center;
    }

    .zhyl_one {
        background-image: url("/r/cms/www/default/img/video/zhylOneBgH5.png");
        background-size: cover;
    }

    .zhyl_one_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
    }

    .zhyl_one_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .zhyl_one_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        text-align: center;
        margin-top: 11px;
    }

    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
        line-height: 36px;
        margin-top: 30px;
    }

    .zhyl_two {
        background-image: url("/r/cms/www/default/img/video/zhylTwoBgH5.png");
        background-size: cover;
    }

    .zhyl_two_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_title, .zhyl_two_content_English {
        color: #FFFFFF;
    }

    .zhyl_two_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item {
        width: calc((100% - 20px) / 2);
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        height: 300px;
        margin-top: 20px;
    }

    .zhyl_two_content_list_item_content {
        width: calc(100% - 20px);
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item_img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .zhyl_two_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .zhyl_two_content_list_item_title {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #FFFFFF;
        margin-top: 40px;
    }

    .zhyl_two_content_list_item_text {
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 20px;
        line-height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .zhyl_three {
        background-image: url("/r/cms/www/default/img/video/zhylThreeBgH5.png");
        background-size: cover;
        /*display: grid;*/
        /*place-items: center;*/
    }

    .zhyl_three_content {
        width: 90%;
        margin-top: 80px;
    }

    .zhyl_three_content_swiper {
        display: none;
    }

    .zhyl_three_h5 {
        display: block;
        margin-top: 70px;
    }

    .zhyl_three_h5_img {
        width: 100%;
        margin-top: 40px;
    }

    .zhyl_three_h5_img > img {
        width: 100%;
    }

    .lwyt_zhzfbapt {
        background-image: url("/r/cms/www/default/img/video/sinInOneBgH5.jpg");
        background-size: cover;
    }

    .lwyt_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_title {
        font-size: 27px;
    }

    .lwyt_zhzfbapt_content_English {
        font-size: 12px;
    }

    .lwyt_zhzfbapt_content_pc {
        display: none;
    }

    .lwyt_zhzfbapt_content_h5 {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item {
        width: calc((100% - 20px) / 2);
        margin-top: 20px;
        color: #5B6E96;
        background-image: url("/r/cms/www/default/img/video/lwytItem.png");
        background-size: cover;
        border-radius: 5px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active {
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/lwytItemActive.png");
        background-size: cover;
        transition-duration: 300ms;
        -moz-transition-duration: 300ms;
        -webkit-transition-duration: 300ms;
        -o-transition-duration: 300ms;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        width: 40px;
        height: 4px;
        background: #ffffff;
        margin-top: 20px;
        display: none;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_title {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img {
        width: 40px;
        height: 36px;
        margin-top: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img > img {
        width: 100%;
        height: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_img {
        /*margin-top: 8px;*/
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_text {
        ont-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        margin-top: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .jjfa_zhzfbapt {
        background-image: url("/r/cms/www/default/img/video/jjfaBgH5.jpg");
    }

    .jjfa_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .jjfa_zhzfbapt_content_title {
        font-size: 40px;
    }

    .jjfa_zhzfbapt_content_English {
        font-size: 16px;
    }

    .jjfa_zhzfbapt_content_text {
        font-size: 14px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 14px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 6px 0;
    }

    .fwzc_zhzfbapt {
        background-image: url("/r/cms/www/default/img/video/fwzcBgH5.jpg");
        background-size: cover;
    }

    .fwzc_zhzfbapt_content {
        width: 90%;
        margin-top: 40px;
    }

    .fwzc_zhzfbapt_content_title {
        font-size: 40px;
    }

    .fwzc_zhzfbapt_content_English {
        font-size: 16px;
    }

    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: cover;
        width: 100%;
        height: 140px;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 30%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 18px;
        margin-top: 11%;
        margin-left: 30%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 12px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }


    .qlcznzz_one {
        background-image: url("/r/cms/www/default/img/video/qlcznzzOneBgH5.png");
        background-size: cover;
    }

    .qlcznzz_one_content {
        width: 90%;
    }

    .qlcznzz_one_content_title {
        font-size: 34px;
    }

    .qlcznzz_one_content_English {
        font-size: 12px;
    }

    .qlcznzz_one_content_text {
        font-size: 18px;
        line-height: 34px;
    }

    .qlcznzz_one_content_list {
        display: none;
    }

    .qlcznzz_one_content_h5 {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .qlcznzz_one_content_h5_img {
        width: 100%;
    }

    .qlcznzz_one_content_h5_img > img {
        width: 100%;
        height: 100%;
    }

    .qlcznzz_two {
        background-image: url("/r/cms/www/default/img/video/qlcznzzTwoBgH5.png");
        background-size: cover;
    }

    .qlcznzz_two_content {
        width: 90%;
    }

    .qlcznzz_two_content_title {
        font-size: 34px;
    }

    .qlcznzz_two_content_English {
        font-size: 12px;
    }

    .qlcznzz_two_content_img {
        display: none;
    }

    .qlcznzz_two_content_img_h5 {
        display: block;
        width: 100%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .qlcznzz_two_content_img_h5 > img {
        width: 100%;
        height: 100%;
    }

    .qlcznzz_three {
        background-image: url("/r/cms/www/default/img/video/qlcznzzThreeBgH5.png");
        background-size: cover;
        /*display: grid;*/
        /*place-items: center;*/
    }

    .qlcznzz_three > .zhyl_three_content > .zhyl_one_content_title {
        font-size: 34px;
    }

    .qlcznzz_three > .zhyl_three_content > .zhyl_one_content_English {
        font-size: 12px;
    }

    .gkgq_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_one_content_title {
        font-size: 30px;
    }

    .gkgq_one_content_English {
        font-size: 14px;
    }

    .gkgq_one_content_text {
        font-size: 14px;
        line-height: 27px;
    }

    .gkgq_two_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_two_content_title {
        font-size: 30px;
    }

    .gkgq_two_content_English {
        font-size: 14px;
    }

    .gkgq_two_content_list {
        display: none;
    }

    .gkgq_two_content_list_h5 {
        display: block;
    }


    .gkgq_two_content_list_h5_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .gkgq_two_content_list_h5_list_item {
        width: calc((100% - 20px) / 2);
        background-image: url("/r/cms/www/default/img/video/gkgqTwoNo2Bg.png");
        height: 210px;
        margin-top: 20px;
    }

    .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_text {
        display: none;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
    }

    .gkgq_two_content_list_h5_list_item_active {
        width: 100%;
        margin-top: 30px;
        background-image: url("/r/cms/www/default/img/video/gkgqTwoSelectBg.png");
        height: 190px;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        padding: 16px 0 0 0;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_text {
        font-size: 14px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
        width: 90%;
        margin: 0 auto;
        padding: 10px 0 10px 0;
        display: block !important;
    }

    .gkgq_three_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_three_content_title {
        font-size: 30px;
    }

    .gkgq_three_content_English {
        font-size: 14px;
    }

    .gkgq_three_content_text {
        font-size: 14px;
    }

    .gkgq_three_content_list_item {
        width: calc((100% - 20px) / 2);
    }

    .szls_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_one_content_title {
        font-size: 30px;
    }

    .szls_one_content_English {
        font-size: 14px;
    }

    .szls_one_content_text {
        font-size: 16px;
        line-height: 40px;
    }

    .szls_one_content_list_item {
        width: 100%;
        margin-top: 20px;
        display: flex;
        height: 140px;
        align-items: center;
    }

    .szls_one_content_list {
        margin-top: 10px;
    }

    .szls_one_content_list_item_left {
        width: 80px;
        margin: 0 20px;
    }

    .szls_one_content_list_item_right {
        font-size: 14px;
        padding: 0 14px 0 0;
        line-height: 24px;
        text-align: left;
    }

    .szls_kj_content {
        width: 90%;
        margin-top: 20%;
    }

    .szls_kj_content_title {
        font-size: 30px;
    }

    .szls_kj_content_English {
        font-size: 14px;
    }

    .szls_kj_content_text {
        font-size: 16px;
        line-height: 40px;
        margin-top: 14%;
    }

    .szls_kj_content_img {
        width: 100%;
        margin: 0 auto;
        margin-top: 80px;
    }

    .szls_cj_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_cj_content_title {
        font-size: 30px;
    }

    .szls_cj_content_English {
        font-size: 14px;
    }

    .szls_cj_content_body {
        margin-top: 30px;
    }

    .szls_cj_content_body_left {
        width: 100%;
    }

    .szls_cj_content_body_left_title {
        font-size: 20px;
        padding: 14px 0 14px 14px;
    }

    .szls_cj_content_body_left_text {
        font-size: 16px;
        line-height: 20px;
        padding: 0 0 10px 14px;
    }

    .szls_cj_content_body_right {
        width: 100%;
    }

    .szls_cj_content_body_right_item {
        height: 160px;
        margin-top: 20px;
    }

    .szls_cj_content_body_right_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_cj_content_body_right_item_title {
        font-size: 22px;
    }

    .szls_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_ys_content_title {
        font-size: 30px;
    }

    .szls_ys_content_English {
        font-size: 14px;
    }

    .szls_ys_content_list {
        margin-top: 0px;
    }

    .szls_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 300px;
        margin-top: 20px;
    }

    .szls_ys_content_list_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_ys_content_list_item_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .szls_ys_content_list_item_text {
        font-size: 14px;
        line-height: 20px;
    }

    .szls_zs_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_zs_content_title {
        font-size: 30px;
    }

    .szls_zs_content_English {
        font-size: 14px;
    }

    .szls_zs_content_body {
        display: none;
    }

    .szls_zs_content_body_h5 {
        display: block;
    }

    .szls_zs_content_body_h5_one {
        width: 100%;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_one > img {
        width: 100%;
        height: 100%;
    }

    .szls_zs_content_body_h5_title {
        font-size: 20px;
        color: #5B6E96;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 20px;
        text-align: center;
    }

    .dsj_fa {
        background-size: cover;
    }

    .dsj_fa_content {
        width: 90%;
        margin-top: 20%;
    }

    .dsj_fa_content_title {
        font-size: 30px;
    }

    .dsj_fa_content_English {
        font-size: 14px;
    }

    .dsj_fa_content_body {
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 20px) / 2);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }


    .dsj_sjzt_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_sjzt_content_title {
        font-size: 30px;
    }

    .dsj_sjzt_content_English {
        font-size: 14px;
    }

    .dsj_sjzt_content_list_item_text {
        font-size: 16px;
    }

    .dsj_sjzt_content_body_one_list {
        display: block;
    }

    .dsj_sjzt_content_body_one_list_item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .dsj_sjzt_content_body_one_list_item_yuan {
        width: 100px;
        height: 100px;
        margin: 40px 0;
        font-size: 16px;
        line-height: 100px;
    }

    .dsj_sjzt_content_body_one_list_item_text {
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_two_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content_right {

        width: 80%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_three_content_right {

        width: 80%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_ys_content_title {
        font-size: 30px;
    }

    .dsj_ys_content_English {
        font-size: 14px;
    }

    .dsj_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 275px;
        margin-top: 20px;
    }

    .dsj_ys_content_list_item_img {
        width: 100px;
        height: 100px;
    }

    .dsj_ys_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .dsj_ys_content_list_item_title {
        left: 20px;
        top: 40px;
        font-size: 16px;
    }

    .dsj_ys_content_list_item_text {
        width: calc(100% - 30px);
        left: 20px;
        top: 66px;
        font-size: 12px;
        line-height: 21px;
    }

    .xwdt_content_body {
        display: none;
    }

    .xwdt_content_body_h5 {
        display: block;
    }

    .xwdt_content {
        width: 90%;
        margin-top: 30px;
    }

    .xwdt_content_title {
        font-size: 30px;
    }

    .xwdt_content_English {
        font-size: 14px;
    }

    .xwdt_content_body_h5_tab {
        display: flex;
    }

    .xwdt_content_body_h5_list_zuixin {
        display: block;
    }

    .xwdt_content_body_h5_list_hangye {
        display: none;
    }

    .xwdt_content_body_h5_tab_item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #304066;
        font-weight: bold;
        font-size: 24px;
        color: #304066;
        padding: 15px 0;
    }

    .xwdt_content_body_h5_tab_item_active {
        border-bottom: 3px solid #304066;
    }

    .xwdt_content_body_h5_list_zuixin_item {
        width: 100%;
        display: flex;
        align-items: center;
        background: #FFFFFF;
        margin-top: 15px;
        border-radius: 5px;
    }

    .xwdt_content_body_h5_list_zuixin_item_img {
        width: 150px;
        padding: 20px 10px;
        height: 90px;
    }

    .xwdt_content_body_h5_list_zuixin_item_img > a > img {
        width: 100%;
        height: 100%;
    }

    .xwdt_content_body_h5_list_zuixin_item_right {
        width: calc(100% - 100px);
    }

    .xwdt_content_body_h5_list_zuixin_item_right_title {
        padding: 0 0 10px 0;

    }

    .xwdt_content_body_h5_list_zuixin_item_right_title > a {
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
    }

    .xwdt_content_body_h5_list_zuixin_item_right_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        padding-right: 10px;
    }

    .xwdt_content_body_h5_list_zuixin_item_right_time {
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        padding: 10px 0 0 0;
    }

    .lxwm_content {
        width: 90%;
        margin-top: 30px;
    }

    .lxwm_content_title {
        font-size: 30px;
    }

    .lxwm_content_English {
        font-size: 14px;
    }

    .lxwm_content_list {
        display: none;
    }

    .lxwm_content_list_h5 {
        display: block;
        margin-top: 30px;
    }

    .lxwm_content_list_h5_item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background: #FFFFFF;
        margin-top: 20px;
        border-radius: 5px;
        height: 200px;
    }

    .lxwm_content_list_h5_item_left {
        width: 140px;
    }

    .lxwm_content_list_h5_item_left_img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .lxwm_content_list_h5_item_left_img > img {
        width: 100%;
        height: 100%;
    }

    .lxwm_content_list_h5_item_left_title {
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
        margin-top: 10px;
        text-align: center;
    }

    .lxwm_content_list_h5_item_left_text {
        text-align: center;
        width: calc(100% - 100px);
    }

    .lxwm_content_list_h5_item_left_text > p {
        padding: 10px 0;
    }

    .lxwm_content_list_h5_item_left_text > p > span:last-child {
        color: #E96D41;
    }




    .gslcPc{
        display: none;
    }
    .gslcH5{
        display: block;

        width: 100%;
        max-height: 9000px;
        background-image: url(/r/cms/www/default/img/video/gslcBgH5.jpg);
        background-size: cover;
    }
    .gslcH5_content{
        width: 90%;
        margin: 30px auto 0;
    }
    .gslcH5_content_title{
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
    }
    .gslcH5_content_English{
        font-size: 14px;
        color: #FFFFFF;
        text-align: center;
        margin-top: 10px;
    }
    .gslcH5_content_body{
        width: 100%;
        /*overflow-y: scroll;*/
        height: 73vh;
        margin-top: 20px;
        overflow-x: hidden;
        overflow-y: auto;
    }
    ::-webkit-scrollbar {
        display: none;
    }
    .gslcH5_content_body_item{
        display: flex;
        /*align-items: center;*/
        color: #FFFFFF;
        /*margin-top: 20px;*/
    }
    .gslcH5_content_body_item_left{
        width: 20%;
        position: relative;
        max-height: 800px;
    }
    .gslcH5_content_body_item_left_time{
        position: absolute;
        top: 50%;
        font-size: 18px;
    }
    .gslcH5_content_body_item_left_yuan{
        width: 15px;
        height:15px;
        border: 1px solid #FFFFFF;
        background: #0076E7;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 60%;
        z-index: 2;
    }
    .gslcH5_content_body_item_left_border{
        width: 1px;
        height: 100%;
        background: #FFFFFF;
        position: absolute;
        top: 20px;
        left: 70%;
    }
    .gslcH5_content_body_item_right{
        width: 75%;
        padding-top: 20px;
    }
    .gslcH5_content_body_item_right_text{
        width: 100%;
        /*margin: 0 auto;*/
        padding: 10px;
        background: rgba(0,51,153,0.6);
        border-radius: 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .h5ThirdScreen_content_img {
        width: 50%;
    }
    .h5ThirdScreen_content_text{
        width: 45%;
    }
    .h5ThirdScreen_content_text_title{
        font-size: 16px;
    }
    .h5ThirdScreen_content_text_text{
        font-size: 12px;
        line-height: 25px;
    }
    .gclsH5_thumb{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .gclsH5_thumb_item{
        width: 7%;
        height: 6px;
        background-color: rgba(255,255,255,0.1);
        margin: 0 5px;
        cursor: pointer;
        border-radius: 6px;
    }
    .gclsH5_thumb_item_active{
        background-color: #0076e7;
    }
    .lxwm_content_body{
        display: none;
    }
    .lxwm_content_body_h5{
        display: block;
        width: 100%;
        background-color: #ffffff;
        border-radius: 50px 0 50px 0;
        margin-top: 40px;
    }
    .lxwm_content_body_h5_right{
        width: 100%;
    }
    .lxwm_content_body_h5_right_img{
        width: 90%;
        margin: 0 auto 0;
        padding: 20px 0 0 0;
    }
    .lxwm_content_body_h5_right_img>img{
        width: 100%;
        height: 100%;
    }
    .lxwm_content_body_h5_left{
        width: 90%;
        margin: 60px auto 20px;
    }
    .lxwm_content_body_h5_left_title{
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
        text-align: center;
    }
    .lxwm_content_body_h5_left_text{
        font-weight: bold;
        font-size: 16px;
        color: #E96D41;
        text-align: center;
        margin-top: 12px;
    }
    .lxwm_content_body_h5_left_list{
        display: flex;
        justify-content: space-around;
        padding: 40px 0 40px 0;
    }
    .lxwm_content_body_h5_left_list_item{
        width: calc((100% - 30px) / 4);
    }
    .lxwm_content_body_h5_left_list_item_img{
        width: 45%;
        margin: 0 auto;
    }
    .lxwm_content_body_h5_left_list_item_img>img{
        width: 100%;
        height: 100%;
    }
    .lxwm_content_body_h5_left_list_item_title{
        font-size: 12px;
        text-align: center;
        margin-top: 6px;
    }

    .fifthScreen_content {
        display: none;
    }
    .fifthScreen_content_h5{
        display: block;
        width: 90%;
        margin: 40px auto 0;
    }
    .fifthScreen_content_h5_list{
        width: 100%;
    }
    .fifthScreen_content_h5_list_item{
        width: calc(100% - 40px);
        margin: 10px auto 0;
        background-color: #FFFFFF;
        padding: 20px;

    }
    .fifthScreen_content_h5_list_item_content{
        display: flex;
        justify-content: space-between;
    }
    .fifthScreen_content_h5_list_item_content_img{
        width: 38%;
        height: 90px;
    }
    .fifthScreen_content_h5_list_item_content_img>a>img{
        width: 100%;
        height: 100%;
    }
    .fifthScreen_content_h5_list_item_content_right{
        width: calc(100% - 38% - 20px);
    }
    .fifthScreen_content_h5_list_item_content_right_title>a{
        font-weight: bold;
        font-size: 14px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
    .fifthScreen_content_h5_list_item_content_right_text{

    }
    .fifthScreen_content_h5_list_item_content_right_text>a{
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .fifthScreen_content_h5_list_item_content_right_time{
        font-weight: 500;
        font-size: 12px;
        color: #5B6E96;
        margin-top: 10px;
    }

}

@media screen and (min-width: 500px) and (max-width: 575.98px) {
    :root {
        --headerHeight: 80px;
    }

    .header {
        background: #003399;
    }

    .pcLogo {
        display: none;
    }

    .h5Logo {
        display: block;
        margin-top: 14px;

    }

    .menu {
        display: none;
    }
    .header_conter{
        justify-content: space-between;
    }
    .h5menu {
        width: 6.63%;
        display: block;
        cursor: pointer;
        margin-top: 18px;
    }

    .nav {
        display: none;
    }

    .logo {
        width: 50%;
    }

    .swiper-pagination {
        display: none;
    }

    .paginationLengthen {
        display: none;
    }

    .carousel-indicators > li {
        width: 100px;
    }

    .carsouselTitle {
        margin-top: 45%;
        font-size: 40px;
    }

    .carsouselSubTitle {
        font-size: 12px;
    }
    .thirdScreen {
        display: none;
    }

    .h5ThirdScreen {
        display: block;
        background-image: url("/r/cms/www/default/img/video/h5IndexThrenBg.jpg");
        background-size: cover;
    }

    .carsouselImg {
        width: 100px;
        height: 100px;
    }
    .carsouselImg > img {
        width: 100%;
        height: 100%;
    }
    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 15px;
        margin-top: 20px;
    }

    .secondScreen_content{
        width: 90%;
        margin-top: 30px;
        font-size: 18px;
    }
    .secondScreen_content_more{
        margin-top: 30px;
    }
    .secondScreen_content_img{
        width: 70%;
        margin-top: 0;
    }
    .secondScreen_content_img>div{
        margin-top: 20px;
    }
    .h5FourthScreen {
        display: block;

    }

    .fourthScreen {
        display: none;
    }
    .lxwm_content_list {
        display: none;
    }

    .lxwm_content_list_h5 {
        display: block;
        margin-top: 30px;
    }
    .lxwm_content {
        width: 90%;
        margin-top: 30px;
    }

    .lxwm_content_title {
        font-size: 30px;
    }

    .lxwm_content_English {
        font-size: 14px;
    }

    .gsjj_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_title {
        font-size: 44px;
    }

    .gsjj_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gsjj_Screen_content_text {
        font-size: 16px !important;
        line-height: 1.8;
    }

    .gswh_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gswh_Screen_content_title {
        font-size: 44px;
    }

    .gswh_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gswh_Screen_content_text {
        display: inherit;
    }

    .gswh_Screen_content_text_img {
        width: 50%;
        height: 40%;
        margin: 0 auto;
    }

    .gswh_Screen_content_text_text {
        font-size: 18px;
        text-align: center;
        margin: 60px 0 0 0;
    }

    .gswh_Screen_content_text_text > div {
        line-height: 50px;
    }
    .gsry_Screen_content {
        width: 100%;
    }
    .slideItem_body{
        width: 84%;
    }
    #gsrySwiper>.swiper-button-prev{
        width: 35px;
        height: 35px;
        background-size: cover;
    }
    #gsrySwiper>.swiper-button-next{
        width: 35px;
        height: 35px;
        background-size: cover;
    }

    .gsry_Screen_content_title {
        font-size: 44px;
    }

    .gsry_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .gsry_Screen_content_swiper_item {
        width: 43.8%;
        /*margin: 0;*/
    }

    .gsry_Screen_content_swiper_item:nth-child(2n) {
        margin-left: 20px;
    }

    .gsry_Screen_content_swiper_item > div:first-child {
        width: 100%;
        height: auto;
    }

    .gsry_Screen_content_swiper_item > div:last-child {
        font-size: 12px;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .one_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 24px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 34px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 12px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 26px) / 2);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png");
        background-size: 100% 100%;
        margin-top: 10px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 16px;
        padding: 16px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 12px;
        padding: 6px 17px 20px 20px;
        line-height: 20px;
    }
    .two_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .two_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
    }

    .two_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        margin-top: 11px;
    }

    .two_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .two_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 2);
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
        margin-top: 50px;
    }

    .two_zhccglpt_content_list_item_img {
        width: 90px;
        margin: 0 auto;
    }

    .two_zhccglpt_content_list_item_img > img {
        width: 100%;
    }

    .two_zhccglpt_content_list_item_title {
        font-size: 16px;
        font-weight: bold;
        margin-top: 20px;
    }

    .two_zhccglpt_content_list_item_text {
        font-size: 12px;
        font-weight: 400;
        margin-top: 10px;
        height: 24px;
        line-height: 20px;
    }
    .three_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .three_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .three_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        margin-top: 11px;
        text-align: center;
    }

    .three_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }

    .three_zhccglpt_content_list_item {
        width: calc((100% - 14px) / 2);
        margin-top: 20px;
    }

    .three_zhccglpt_content_list_item_title {
        width: 100%;
        text-align: center;
        background: #003399;
        color: #ffffff;
        padding: 10px 0;
        font-weight: bold;
        font-size: 16px;
    }

    .three_zhccglpt_content_list_item_text {
        /*width: 100%;*/
        background: #ffffff;
        font-weight: 400;
        font-size: 12px;
        color: #7E8DAC;
        padding: 10px;
        line-height: 24px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }
    .wlzcgh_body {
        display: none;
    }

    .wlzcgh_csyxglfwpt-content {
        width: 90%;
    }

    .wlzcgh_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .wlzcgh_csyxglfwpt_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .wlzcgh_body_h5 {
        display: block;
        width: 80%;
        margin: 40px auto 0;
    }

    .wlzcgh_body_h5 > img {
        width: 100%;
    }
    .jbkj_csyxglfwpt_content_img {
        display: none;
    }

    .jbkj_csyxglfwpt_content_img_h5 {
        display: block;
        margin-top: 80px;
    }

    .hyyy_csyxglfwpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
        font-family: Source Han Sans CN;
    }

    .hyyy_csyxglfwpt_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .hyyy_csyxglfwpt_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        margin-top: 11px;
        text-align: center;
    }

    .hyyy_body {
        display: none;
    }

    .hyyy_body_h5 {
        display: block;
    }

    .hyyy_body_h5_text {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 18px;
        color: #5B6E96;
        line-height: 32px;
        margin-top: 30px;
    }

    .hyyy_body_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .hyyy_body_h5_list_item {
        width: calc((100% - 10px) / 2);
        margin-top: 20px;
    }

    .hyyy_body_h5_list_item_img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_img > img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 12px;
        color: #5B6E96;
        line-height: 30px;
        text-align: center;
    }
    .zhyl_one_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
    }

    .zhyl_one_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .zhyl_one_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        text-align: center;
        margin-top: 11px;
    }

    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
        line-height: 36px;
        margin-top: 30px;
    }
    .zhyl_two_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_title, .zhyl_two_content_English {
        color: #FFFFFF;
    }

    .zhyl_two_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item {
        width: calc((100% - 20px) / 2);
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        height: 300px;
        margin-top: 20px;
    }

    .zhyl_two_content_list_item_content {
        width: calc(100% - 20px);
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item_img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .zhyl_two_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .zhyl_two_content_list_item_title {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #FFFFFF;
        margin-top: 40px;
    }

    .zhyl_two_content_list_item_text {
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 20px;
        line-height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
    .zhyl_three_content {
        width: 90%;
        margin-top: 80px;
    }

    .zhyl_three_content_swiper {
        display: none;
    }

    .zhyl_three_h5 {
        display: block;
        margin-top: 70px;
    }

    .zhyl_three_h5_img {
        width: 90%;
        margin: 40px auto 0;
    }

    .zhyl_three_h5_img > img {
        width: 100%;
    }

    .lwyt_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_title {
        font-size: 27px;
    }

    .lwyt_zhzfbapt_content_English {
        font-size: 12px;
    }

    .lwyt_zhzfbapt_content_pc {
        display: none;
    }

    .lwyt_zhzfbapt_content_h5 {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item {
        width: calc((100% - 20px) / 2);
        margin-top: 20px;
        color: #5B6E96;
        background-image: url("/r/cms/www/default/img/video/lwytItem.png");
        background-size: cover;
        border-radius: 5px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active {
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/lwytItemActive.png");
        background-size: cover;
        transition-duration: 300ms;
        -moz-transition-duration: 300ms;
        -webkit-transition-duration: 300ms;
        -o-transition-duration: 300ms;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        width: 40px;
        height: 4px;
        background: #ffffff;
        margin-top: 20px;
        display: none;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_title {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img {
        width: 40px;
        height: 36px;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img > img {
        width: 100%;
        height: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_img {
        /*margin-top: 8px;*/
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_text {
        ont-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        margin-top: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .jjfa_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .jjfa_zhzfbapt_content_title {
        font-size: 40px;
    }

    .jjfa_zhzfbapt_content_English {
        font-size: 16px;
    }

    .jjfa_zhzfbapt_content_text {
        font-size: 14px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 14px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 6px 0;
    }
    .fwzc_zhzfbapt_content {
        width: 90%;
        margin-top: 40px;
    }

    .fwzc_zhzfbapt_content_title {
        font-size: 40px;
    }

    .fwzc_zhzfbapt_content_English {
        font-size: 16px;
    }

    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: cover;
        width: 100%;
        height: 140px;
        background-position-y:center;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 18px;
        margin-top: 9%;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 12px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }

    .qlcznzz_one_content {
        width: 90%;
    }

    .qlcznzz_one_content_title {
        font-size: 34px;
    }

    .qlcznzz_one_content_English {
        font-size: 12px;
    }

    .qlcznzz_one_content_text {
        font-size: 18px;
        line-height: 34px;
    }

    .qlcznzz_one_content_list {
        display: none;
    }

    .qlcznzz_one_content_h5 {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .qlcznzz_one_content_h5_img {
        width: 100%;
    }

    .qlcznzz_one_content_h5_img > img {
        width: 100%;
        height: 100%;
    }
    .qlcznzz_two_content {
        width: 90%;
    }

    .qlcznzz_two_content_title {
        font-size: 34px;
    }

    .qlcznzz_two_content_English {
        font-size: 12px;
    }

    .qlcznzz_two_content_img {
        display: none;
    }

    .qlcznzz_two_content_img_h5 {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .qlcznzz_two_content_img_h5 > img {
        width: 100%;
        height: 100%;
    }
    .gkgq_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_one_content_title {
        font-size: 30px;
    }

    .gkgq_one_content_English {
        font-size: 14px;
    }

    .gkgq_one_content_text {
        font-size: 16px;
        line-height: 27px;
    }

    .gkgq_two_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_two_content_title {
        font-size: 30px;
    }

    .gkgq_two_content_English {
        font-size: 14px;
    }

    .gkgq_two_content_list {
        display: none;
    }

    .gkgq_two_content_list_h5 {
        display: block;
    }


    .gkgq_two_content_list_h5_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .gkgq_two_content_list_h5_list_item {
        width: calc((100% - 20px) / 2);
        background-image: url("/r/cms/www/default/img/video/gkgqTwoNo2Bg.png");
        height: 210px;
        margin-top: 20px;
    }

    .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_text {
        display: none;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
    }

    .gkgq_two_content_list_h5_list_item_active {
        width: 100%;
        margin-top: 30px;
        background-image: url("/r/cms/www/default/img/video/gkgqTwoSelectBg.png");
        height: 190px;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        padding: 16px 0 0 0;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_text {
        font-size: 14px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
        width: 90%;
        margin: 0 auto;
        padding: 10px 0 10px 0;
        display: block !important;
    }

    .gkgq_three_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_three_content_title {
        font-size: 30px;
    }

    .gkgq_three_content_English {
        font-size: 14px;
    }

    .gkgq_three_content_text {
        font-size: 14px;
    }

    .gkgq_three_content_list_item {
        width: calc((100% - 20px) / 2);
    }

    .szls_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_one_content_title {
        font-size: 30px;
    }

    .szls_one_content_English {
        font-size: 14px;
    }

    .szls_one_content_text {
        font-size: 16px;
        line-height: 40px;
    }

    .szls_one_content_list_item {
        width: 100%;
        margin-top: 20px;
        display: flex;
        height: 140px;
        align-items: center;
    }

    .szls_one_content_list {
        margin-top: 10px;
    }

    .szls_one_content_list_item_left {
        width: 80px;
        margin: 0 20px;
    }

    .szls_one_content_list_item_right {
        font-size: 14px;
        padding: 0 14px 0 0;
        line-height: 24px;
        text-align: left;
    }
    .szls_kj_content {
        width: 90%;
        margin-top: 20%;
    }

    .szls_kj_content_title {
        font-size: 30px;
    }

    .szls_kj_content_English {
        font-size: 14px;
    }

    .szls_kj_content_text {
        font-size: 16px;
        line-height: 40px;
        margin-top: 14%;
    }

    .szls_kj_content_img {
        width: 100%;
        margin: 0 auto;
        margin-top: 80px;
    }

    .szls_cj_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_cj_content_title {
        font-size: 30px;
    }

    .szls_cj_content_English {
        font-size: 14px;
    }

    .szls_cj_content_body {
        margin-top: 30px;
    }

    .szls_cj_content_body_left {
        width: 100%;
    }

    .szls_cj_content_body_left_title {
        font-size: 20px;
        padding: 14px 0 14px 14px;
    }

    .szls_cj_content_body_left_text {
        font-size: 16px;
        line-height: 20px;
        padding: 0 0 10px 14px;
    }

    .szls_cj_content_body_right {
        width: 100%;
    }

    .szls_cj_content_body_right_item {
        height: 160px;
        margin-top: 20px;
    }

    .szls_cj_content_body_right_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_cj_content_body_right_item_title {
        font-size: 22px;
    }

    .szls_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_ys_content_title {
        font-size: 30px;
    }

    .szls_ys_content_English {
        font-size: 14px;
    }

    .szls_ys_content_list {
        margin-top: 0px;
    }

    .szls_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 300px;
        margin-top: 20px;
    }

    .szls_ys_content_list_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_ys_content_list_item_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .szls_ys_content_list_item_text {
        font-size: 14px;
        line-height: 20px;
    }

    .szls_zs_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_zs_content_title {
        font-size: 30px;
    }

    .szls_zs_content_English {
        font-size: 14px;
    }

    .szls_zs_content_body {
        display: none;
    }

    .szls_zs_content_body_h5 {
        display: block;
    }

    .szls_zs_content_body_h5_one {
        width: 100%;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_one > img {
        width: 100%;
        height: 100%;
    }

    .szls_zs_content_body_h5_title {
        font-size: 20px;
        color: #5B6E96;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 20px;
        text-align: center;
    }
    .dsj_fa_content {
        width: 90%;
        margin-top: 20%;
    }

    .dsj_fa_content_title {
        font-size: 30px;
    }

    .dsj_fa_content_English {
        font-size: 14px;
    }

    .dsj_fa_content_body {
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 20px) / 2);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }


    .dsj_sjzt_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_sjzt_content_title {
        font-size: 30px;
    }

    .dsj_sjzt_content_English {
        font-size: 14px;
    }

    .dsj_sjzt_content_list_item_text {
        font-size: 16px;
    }

    .dsj_sjzt_content_body_one_list {
        display: block;
    }

    .dsj_sjzt_content_body_one_list_item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .dsj_sjzt_content_body_one_list_item_yuan {
        width: 100px;
        height: 100px;
        margin: 40px 0;
        font-size: 16px;
        line-height: 100px;
    }

    .dsj_sjzt_content_body_one_list_item_text {
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_two_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content_right {

        width: 80%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_three_content_right {

        width: 80%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_ys_content_title {
        font-size: 30px;
    }

    .dsj_ys_content_English {
        font-size: 14px;
    }

    .dsj_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 275px;
        margin-top: 20px;
    }

    .dsj_ys_content_list_item_img {
        width: 100px;
        height: 100px;
    }

    .dsj_ys_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .dsj_ys_content_list_item_title {
        left: 20px;
        top: 40px;
        font-size: 16px;
    }

    .dsj_ys_content_list_item_text {
        width: calc(100% - 30px);
        left: 20px;
        top: 66px;
        font-size: 12px;
        line-height: 21px;
    }
    .xwdt_content_body {
        display: none;
    }

    .xwdt_content_body_h5 {
        display: block;
    }
    .xwdt_content {
        width: 90%;
        margin-top: 30px;
    }

    .xwdt_content_title {
        font-size: 30px;
    }

    .xwdt_content_English {
        font-size: 14px;
    }

    .xwdt_content_body_h5_tab {
        display: flex;
    }

    .xwdt_content_body_h5_list_zuixin {
        display: block;
    }

    .xwdt_content_body_h5_list_hangye {
        display: none;
    }

    .xwdt_content_body_h5_tab_item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #304066;
        font-weight: bold;
        font-size: 24px;
        color: #304066;
        padding: 15px 0;
    }

    .xwdt_content_body_h5_tab_item_active {
        border-bottom: 3px solid #304066;
    }

    .xwdt_content_body_h5_list_zuixin_item {
        width: 100%;
        display: flex;
        align-items: center;
        background: #FFFFFF;
        margin-top: 15px;
        border-radius: 5px;
    }

    .xwdt_content_body_h5_list_zuixin_item_img {
        width: 150px;
        padding: 20px 10px;
        height: 90px;
    }

    .xwdt_content_body_h5_list_zuixin_item_img > a > img {
        width: 100%;
        height: 100%;
    }

    .xwdt_content_body_h5_list_zuixin_item_right {
        width: calc(100% - 100px);
    }

    .xwdt_content_body_h5_list_zuixin_item_right_title {
        padding: 0 0 10px 0;

    }

    .xwdt_content_body_h5_list_zuixin_item_right_title > a {
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
    }

    .xwdt_content_body_h5_list_zuixin_item_right_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        padding-right: 10px;
    }

    .xwdt_content_body_h5_list_zuixin_item_right_time {
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        padding: 10px 0 0 0;
    }

    .gslc_Screen_content{
        width: 90%;
    }
    .gslc_Screen_content_title{
        font-size: 30px;
    }
    .gslc_Screen_content_English{
        font-size: 14px;
    }
    .gslc_Screen_content_timer_shaft_item_text{
        font-size: 20px;
    }
    .gslc_Screen_content_timer_shaft_item_yuan {
        width: 15px;
        height: 15px;
        top: 76%;
    }
    #gslcSwiper>.swiper-button-prev{
        left: 0;
    }
    #gslcSwiper>.swiper-button-next{
        right: 0;
    }
    .gslcSwiperSlideItem_2021>.gslcSwiperSlideItem_body>.gslcSwiperSlideItem_body_text {
        font-size: 12px;
        line-height: 20px;
    }
    .gslcSwiperSlideItem_body_text {
        width: 94%;
        font-weight: 400;
        font-size: 12px;
        color: #FFFFFF;
        line-height: 40px;
    }
    .h5ThirdScreen_content_img {
        width: 45%;
    }
    .h5ThirdScreen_content_text{
        width: 50%;
    }
    .h5ThirdScreen_content_text_title{
        font-size: 16px;
    }
    .h5ThirdScreen_content_text_text{
        font-size: 12px;
        line-height: 25px;
    }
    .lxwm_content_body{
        display: none;
    }
    .lxwm_content_body_h5{
        display: block;
        width: 100%;
        background-color: #ffffff;
        border-radius: 50px 0 50px 0;
        margin-top: 40px;
    }
    .lxwm_content_body_h5_right{
        width: 100%;
    }
    .lxwm_content_body_h5_right_img{
        width: 90%;
        margin: 0 auto 0;
        padding: 20px 0 0 0;
    }
    .lxwm_content_body_h5_right_img>img{
        width: 100%;
        height: 100%;
    }
    .lxwm_content_body_h5_left{
        width: 90%;
        margin: 60px auto 20px;
    }
    .lxwm_content_body_h5_left_title{
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
        text-align: center;
    }
    .lxwm_content_body_h5_left_text{
        font-weight: bold;
        font-size: 16px;
        color: #E96D41;
        text-align: center;
        margin-top: 12px;
    }
    .lxwm_content_body_h5_left_list{
        display: flex;
        justify-content: space-around;
        padding: 40px 0 40px 0;
    }
    .lxwm_content_body_h5_left_list_item{
        width: calc((100% - 30px) / 4);
    }
    .lxwm_content_body_h5_left_list_item_img{
        width: 45%;
        margin: 0 auto;
    }
    .lxwm_content_body_h5_left_list_item_img>img{
        width: 100%;
        height: 100%;
    }
    .lxwm_content_body_h5_left_list_item_title{
        font-size: 12px;
        text-align: center;
        margin-top: 6px;
    }
    .fifthScreen_content {
        display: none;
    }
    .fifthScreen_content_h5{
        display: block;
        width: 90%;
        margin: 40px auto 0;
    }
    .fifthScreen_content_h5_list{
        width: 100%;
    }
    .fifthScreen_content_h5_list_item{
        width: calc(100% - 40px);
        margin: 10px auto 0;
        background-color: #FFFFFF;
        padding: 20px;

    }
    .fifthScreen_content_h5_list_item_content{
        display: flex;
        justify-content: space-between;
    }
    .fifthScreen_content_h5_list_item_content_img{
        width: 38%;
        height: 90px;
    }
    .fifthScreen_content_h5_list_item_content_img>a>img{
        width: 100%;
        height: 100%;
    }
    .fifthScreen_content_h5_list_item_content_right{
        width: calc(100% - 38% - 20px);
    }
    .fifthScreen_content_h5_list_item_content_right_title>a{
        font-weight: bold;
        font-size: 14px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
    .fifthScreen_content_h5_list_item_content_right_text{

    }
    .fifthScreen_content_h5_list_item_content_right_text>a{
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .fifthScreen_content_h5_list_item_content_right_time{
        font-weight: 500;
        font-size: 12px;
        color: #5B6E96;
        margin-top: 10px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767.9px) {
    :root {
        --headerHeight: 80px;
    }

    .header {
        background: #003399;
    }

    .pcLogo {
        display: none;
    }

    .h5Logo {
        display: block;
        margin-top: 14px;

    }

    .menu {
        display: none;
    }

    .header_conter {
        justify-content: space-between;
    }

    .h5menu {
        width: 4.63%;
        display: block;
        cursor: pointer;
    }

    .nav {
        display: none;
    }

    .logo {
        width: 44%;
    }

    .carousel-indicators > li {
        width: 140px;
    }

    .swiper-pagination {
        display: none;
    }

    .paginationLengthen {
        display: none;
    }

    .carsouselTitle {
        margin-top: 22%;
        font-size: 50px;
    }

    .carsouselImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 15px;
        margin-top: 20px;
    }

    .carsouselSubTitle {
        font-size: 14px;
    }

    .thirdScreen {
        display: none;
    }

    .h5ThirdScreen {
        display: block;
        background-image: url("/r/cms/www/default/img/video/h5IndexThrenBg.jpg");
        background-size: cover;
    }

    .secondScreen_content {
        width: 90%;
        margin-top: 30px;
        font-size: 18px;
    }

    .secondScreen_content_more {
        margin-top: 30px;
    }

    .secondScreen_content_img {
        width: 58%;
        margin-top: 0;
    }

    .secondScreen_content_img > div {
        margin-top: 20px;
    }

    .h5ThirdScreen_content_img {
        width: 32%;
    }

    .h5ThirdScreen_content_text {
        width: 66%;
    }

    .h5ThirdScreen_content_text_title {
        font-size: 16px;
    }

    .h5ThirdScreen_content_text_text {
        font-size: 12px;
        line-height: 25px;
    }

    .h5FourthScreen {
        display: block;

    }

    .fourthScreen {
        display: none;
    }

    .fourthScreen {
        display: none;
    }

    .lxwm_content_list {
        display: none;
    }

    .lxwm_content_list_h5 {
        display: block;
        margin-top: 30px;
    }

    .lxwm_content {
        width: 90%;
        margin-top: 30px;
    }

    .lxwm_content_title {
        font-size: 30px;
    }

    .lxwm_content_English {
        font-size: 14px;
    }

    .h5FourthScreen_content_item_button {
        width: 50%;
        margin-top: 15px;
    }

    .h5FourthScreen_content_item_img {
        width: 11%;
    }

    .gsjj_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_title {
        font-size: 44px;
    }

    .gsjj_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gsjj_Screen_content_text {
        font-size: 18px !important;
        line-height: 1.8;
    }

    .gswh_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gswh_Screen_content_title {
        font-size: 44px;
    }

    .gswh_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gswh_Screen_content_text {
        display: inherit;
    }

    .gswh_Screen_content_text_img {
        width: 40%;
        height: 40%;
        margin: 0 auto;
    }

    .gswh_Screen_content_text_text {
        font-size: 18px;
        text-align: center;
        margin: 60px 0 0 0;
    }

    .gswh_Screen_content_text_text > div {
        line-height: 50px;
    }

    .gsry_Screen_content {
        width: 90%;
    }

    .gsry_Screen_content_title {
        font-size: 44px;
    }

    .gsry_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .gsry_Screen_content_swiper_item {
        width: 33%;
        /*margin: 0;*/
    }

    .gsry_Screen_content_swiper_item:nth-child(2n) {
        margin-left: 20px;
    }

    .gsry_Screen_content_swiper_item > div:first-child {
        width: 100%;
        height: auto;
    }

    .gsry_Screen_content_swiper_item > div:last-child {
        font-size: 12px;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .one_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 24px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 34px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 12px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 26px) / 2);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png");
        background-size: 100% 100%;
        margin-top: 10px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 16px;
        padding: 16px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 12px;
        padding: 6px 17px 20px 20px;
        line-height: 20px;
    }

    .two_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .two_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
    }

    .two_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        margin-top: 11px;
    }

    .two_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .two_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 2);
        font-family: Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
        text-align: center;
        margin-top: 50px;
    }

    .two_zhccglpt_content_list_item_img {
        width: 90px;
        margin: 0 auto;
    }

    .two_zhccglpt_content_list_item_img > img {
        width: 100%;
    }

    .two_zhccglpt_content_list_item_title {
        font-size: 16px;
        font-weight: bold;
        margin-top: 20px;
    }

    .two_zhccglpt_content_list_item_text {
        font-size: 12px;
        font-weight: 400;
        margin-top: 10px;
        height: 24px;
        line-height: 20px;
    }

    .three_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .three_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .three_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        margin-top: 11px;
        text-align: center;
    }

    .three_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }

    .three_zhccglpt_content_list_item {
        width: calc((100% - 14px) / 2);
        margin-top: 20px;
    }

    .three_zhccglpt_content_list_item_title {
        width: 100%;
        text-align: center;
        background: #003399;
        color: #ffffff;
        padding: 10px 0;
        font-weight: bold;
        font-size: 16px;
    }

    .three_zhccglpt_content_list_item_text {
        /*width: 100%;*/
        background: #ffffff;
        font-weight: 400;
        font-size: 12px;
        color: #7E8DAC;
        padding: 10px;
        line-height: 24px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }

    .wlzcgh_body {
        display: none;
    }

    .wlzcgh_csyxglfwpt-content {
        width: 90%;
    }

    .wlzcgh_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .wlzcgh_csyxglfwpt_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .wlzcgh_body_h5 {
        display: block;
        width: 70%;
        margin: 40px auto 0;
    }

    .wlzcgh_body_h5 > img {
        width: 100%;
    }

    .jbkj_csyxglfwpt_content_img {
        display: none;
    }

    .jbkj_csyxglfwpt_content_img_h5 {
        display: block;
        width: 80%;
        margin: 40px auto 0;
    }

    .hyyy_csyxglfwpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
        font-family: Source Han Sans CN;
    }

    .hyyy_csyxglfwpt_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .hyyy_csyxglfwpt_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        margin-top: 11px;
        text-align: center;
    }

    .hyyy_body {
        display: none;
    }

    .hyyy_body_h5 {
        display: block;
    }

    .hyyy_body_h5_text {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 18px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 40px;
    }

    .hyyy_body_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 60px auto 0;
    }

    .hyyy_body_h5_list_item {
        width: calc((100% - 20px) / 3);
        margin-top: 20px;
    }

    .hyyy_body_h5_list_item_img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_img > img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 12px;
        color: #5B6E96;
        line-height: 30px;
        text-align: center;
    }

    .zhyl_one_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
    }

    .zhyl_one_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .zhyl_one_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        text-align: center;
        margin-top: 11px;
    }

    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 18px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 30px;
    }

    .zhyl_two_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_title, .zhyl_two_content_English {
        color: #FFFFFF;
    }

    .zhyl_two_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item {
        width: calc((100% - 20px) / 2);
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        height: 300px;
        margin-top: 20px;
    }

    .zhyl_two_content_list_item_content {
        width: calc(100% - 20px);
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item_img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .zhyl_two_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .zhyl_two_content_list_item_title {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #FFFFFF;
        margin-top: 40px;
    }

    .zhyl_two_content_list_item_text {
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 20px;
        line-height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .zhyl_three_content {
        width: 90%;
        margin-top: 80px;
    }

    .zhyl_three_content_swiper {
        display: none;
    }

    .zhyl_three_h5 {
        display: block;
        margin-top: 70px;
    }

    .zhyl_three_h5_img {
        width: 70%;
        margin: 40px auto 0;
    }

    .zhyl_three_h5_img > img {
        width: 100%;
    }

    .lwyt_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_title {
        font-size: 27px;
    }

    .lwyt_zhzfbapt_content_English {
        font-size: 12px;
    }

    .lwyt_zhzfbapt_content_pc {
        display: none;
    }

    .lwyt_zhzfbapt_content_h5 {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item {
        width: calc((100% - 20px) / 2);
        margin-top: 20px;
        color: #5B6E96;
        background-image: url("/r/cms/www/default/img/video/lwytItem.png");
        background-size: cover;
        border-radius: 5px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active {
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/lwytItemActive.png");
        background-size: cover;
        transition-duration: 300ms;
        -moz-transition-duration: 300ms;
        -webkit-transition-duration: 300ms;
        -o-transition-duration: 300ms;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        width: 40px;
        height: 4px;
        background: #ffffff;
        margin-top: 20px;
        display: none;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_title {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img {
        width: 40px;
        height: 36px;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img > img {
        width: 100%;
        height: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_img {
        /*margin-top: 8px;*/
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_text {
        ont-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        margin-top: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .jjfa_zhzfbapt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .jjfa_zhzfbapt_content_title {
        font-size: 40px;
    }

    .jjfa_zhzfbapt_content_English {
        font-size: 16px;
    }

    .jjfa_zhzfbapt_content_text {
        font-size: 16px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 14px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 6px 0;
    }

    .fwzc_zhzfbapt_content {
        width: 90%;
        margin-top: 40px;
    }

    .fwzc_zhzfbapt_content_title {
        font-size: 40px;
    }

    .fwzc_zhzfbapt_content_English {
        font-size: 16px;
    }

    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: cover;
        width: 100%;
        height: 140px;
        background-position-y: center;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 20px;
        margin-top: 7%;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 14px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }

    .qlcznzz_one_content {
        width: 90%;
    }

    .qlcznzz_one_content_title {
        font-size: 34px;
    }

    .qlcznzz_one_content_English {
        font-size: 12px;
    }

    .qlcznzz_one_content_text {
        font-size: 18px;
        line-height: 34px;
    }

    .qlcznzz_one_content_list {
        display: none;
    }

    .qlcznzz_one_content_h5 {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .qlcznzz_one_content_h5_img {
        width: 80%;
        margin: 0 auto;
    }

    .qlcznzz_one_content_h5_img > img {
        width: 100%;
        height: 100%;
    }

    .qlcznzz_two_content {
        width: 90%;
    }

    .qlcznzz_two_content_title {
        font-size: 34px;
    }

    .qlcznzz_two_content_English {
        font-size: 12px;
    }

    .qlcznzz_two_content_img {
        display: none;
    }

    .qlcznzz_two_content_img_h5 {
        display: block;
        width: 68%;
        margin: 0 auto;
        margin-top: 40px;
    }

    .qlcznzz_two_content_img_h5 > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_one_content_title {
        font-size: 30px;
    }

    .gkgq_one_content_English {
        font-size: 14px;
    }

    .gkgq_one_content_text {
        font-size: 16px;
        line-height: 30px;
    }

    .gkgq_two_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_two_content_title {
        font-size: 30px;
    }

    .gkgq_two_content_English {
        font-size: 14px;
    }

    .gkgq_two_content_list {
        display: none;
    }

    .gkgq_two_content_list_h5 {
        display: block;
    }


    .gkgq_two_content_list_h5_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .gkgq_two_content_list_h5_list_item {
        width: calc((100% - 20px) / 2);
        background-image: url("/r/cms/www/default/img/video/gkgqTwoNo2Bg.png");
        height: 210px;
        margin-top: 20px;
    }

    .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_text {
        display: none;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
    }

    .gkgq_two_content_list_h5_list_item_active {
        width: 100%;
        margin-top: 30px;
        background-image: url("/r/cms/www/default/img/video/gkgqTwoSelectBg.png");
        height: 190px;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        padding: 16px 0 0 0;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_text {
        font-size: 14px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
        width: 90%;
        margin: 0 auto;
        padding: 10px 0 10px 0;
        display: block !important;
    }

    .gkgq_three_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_three_content_title {
        font-size: 30px;
    }

    .gkgq_three_content_English {
        font-size: 14px;
    }

    .gkgq_three_content_text {
        font-size: 14px;
    }

    .gkgq_three_content_list_item {
        width: calc((100% - 20px) / 2);
    }

    .szls_one_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_one_content_title {
        font-size: 30px;
    }

    .szls_one_content_English {
        font-size: 14px;
    }

    .szls_one_content_text {
        font-size: 16px;
        line-height: 40px;
    }

    .szls_one_content_list_item {
        width: 100%;
        margin-top: 20px;
        display: flex;
        height: 140px;
        align-items: center;
    }

    .szls_one_content_list {
        margin-top: 10px;
    }

    .szls_one_content_list_item_left {
        width: 80px;
        margin: 0 20px;
    }

    .szls_one_content_list_item_right {
        font-size: 14px;
        padding: 0 14px 0 0;
        line-height: 24px;
        text-align: left;
    }

    .szls_kj_content {
        width: 90%;
        margin-top: 40px;
    }

    .szls_kj_content_title {
        font-size: 30px;
    }

    .szls_kj_content_English {
        font-size: 14px;
    }

    .szls_kj_content_text {
        font-size: 16px;
        line-height: 40px;
        margin-top: 14%;
    }

    .szls_kj_content_img {
        width: 100%;
        margin: 0 auto;
    }

    .szls_cj_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_cj_content_title {
        font-size: 30px;
    }

    .szls_cj_content_English {
        font-size: 14px;
    }

    .szls_cj_content_body {
        width: 73%;
        margin: 30px auto 0;
    }

    .szls_cj_content_body_left {
        width: 100%;
    }

    .szls_cj_content_body_left_title {
        font-size: 20px;
        padding: 14px 0 14px 14px;
    }

    .szls_cj_content_body_left_text {
        font-size: 16px;
        line-height: 20px;
        padding: 0 0 10px 14px;
    }

    .szls_cj_content_body_right {
        width: 100%;
    }

    .szls_cj_content_body_right_item {
        height: 146px;
        margin-top: 20px;
    }

    .szls_cj_content_body_right_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_cj_content_body_right_item_title {
        font-size: 22px;
    }

    .szls_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_ys_content_title {
        font-size: 30px;
    }

    .szls_ys_content_English {
        font-size: 14px;
    }

    .szls_ys_content_list {
        margin-top: 0px;
    }

    .szls_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 300px;
        margin-top: 20px;
    }

    .szls_ys_content_list_item_img {
        width: 50px;
        height: 50px;
        margin-top: 30px;
    }

    .szls_ys_content_list_item_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .szls_ys_content_list_item_text {
        font-size: 14px;
        line-height: 20px;
    }

    .szls_zs_content {
        width: 90%;
        margin-top: 30px;
    }

    .szls_zs_content_title {
        font-size: 30px;
    }

    .szls_zs_content_English {
        font-size: 14px;
    }

    .szls_zs_content_body {
        display: none;
    }

    .szls_zs_content_body_h5 {
        display: block;
    }

    .szls_zs_content_body_h5_one {
        width: 75%;
        margin: 20px auto 0;
    }

    .szls_zs_content_body_h5_one > img {
        width: 100%;
        height: 100%;
    }

    .szls_zs_content_body_h5_title {
        font-size: 20px;
        color: #5B6E96;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 20px;
        text-align: center;
    }

    .dsj_fa_content {
        width: 90%;
        margin-top: 8%;
    }

    .dsj_fa_content_title {
        font-size: 30px;
    }

    .dsj_fa_content_English {
        font-size: 14px;
    }

    .dsj_fa_content_body {
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 20px) / 2);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }

    .dsj_fa_content_body_line_item_img {
        width: 100%;
        height: 170px;
    }

    .dsj_sjzt_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_sjzt_content_title {
        font-size: 30px;
    }

    .dsj_sjzt_content_English {
        font-size: 14px;
    }

    .dsj_sjzt_content_list_item_text {
        font-size: 16px;
    }

    .dsj_sjzt_content_body_one_list {
        display: block;
    }

    .dsj_sjzt_content_body_one_list_item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .dsj_sjzt_content_body_one_list_item_yuan {
        width: 100px;
        height: 100px;
        margin: 40px 0;
        font-size: 16px;
        line-height: 100px;
    }

    .dsj_sjzt_content_body_one_list_item_text {
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_two_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_sjzt_content_body_two_content_right {

        width: 80%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content {
        display: block;
        margin-top: 40px;
    }

    .dsj_sjzt_content_body_three_content_right {

        width: 58%;
        margin: 10px auto;
    }

    .dsj_sjzt_content_body_three_content_left {
        width: 100%;
        font-size: 14px;
        line-height: 30px;
    }

    .dsj_ys_content {
        width: 90%;
        margin-top: 30px;
    }

    .dsj_ys_content_title {
        font-size: 30px;
    }

    .dsj_ys_content_English {
        font-size: 14px;
    }

    .dsj_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 275px;
        margin-top: 20px;
    }

    .dsj_ys_content_list_item_img {
        width: 100px;
        height: 100px;
    }

    .dsj_ys_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .dsj_ys_content_list_item_title {
        left: 20px;
        top: 40px;
        font-size: 16px;
    }

    .dsj_ys_content_list_item_text {
        width: calc(100% - 30px);
        left: 20px;
        top: 66px;
        font-size: 12px;
        line-height: 21px;
    }

    .xwdt_content_body_list_item_time_data {
        font-weight: 500;
        font-size: 30px;
        color: #304066;
    }

    .xwdt_content_body_list_item_time {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #5B6E96;
        padding: 20px 0;
    }

    .xwdt_content_body_list_item_title {
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
    }

    .xwdt_content_body_list_item_img {
        width: 100%;
        height: 145px;
        padding: 20px 0 0 0;
    }

    .gslc_Screen_content {
        width: 90%;
    }

    .gslc_Screen_content_title {
        font-size: 30px;
    }

    .gslc_Screen_content_English {
        font-size: 14px;
    }

    .gslc_Screen_content_timer_shaft_item_text {
        font-size: 20px;
    }

    .gslc_Screen_content_timer_shaft_item_yuan {
        width: 15px;
        height: 15px;
        top: 76%;
    }

    #gslcSwiper > .swiper-button-prev {
        left: 0;
    }

    #gslcSwiper > .swiper-button-next {
        right: 0;
    }

    .gslcSwiperSlideItem_2021 > .gslcSwiperSlideItem_body > .gslcSwiperSlideItem_body_text {
        font-size: 12px;
        line-height: 23px;
    }

    .gslcSwiperSlideItem_body_text {
        width: 94%;
        font-weight: 400;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 40px;
    }

    .lxwm_content_body {
        display: none;
    }

    .lxwm_content_body_h5 {
        display: block;
        width: 100%;
        background-color: #ffffff;
        border-radius: 50px 0 50px 0;
        margin-top: 40px;
    }

    .lxwm_content_body_h5_right {
        width: 100%;
    }

    .lxwm_content_body_h5_right_img {
        width: 60%;
        margin: 0 auto 0;
        padding: 20px 0 0 0;
    }

    .lxwm_content_body_h5_right_img > img {
        width: 100%;
        height: 100%;
    }

    .lxwm_content_body_h5_left {
        width: 90%;
        margin: 60px auto 20px;
    }

    .lxwm_content_body_h5_left_title {
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
        text-align: center;
    }

    .lxwm_content_body_h5_left_text {
        font-weight: bold;
        font-size: 16px;
        color: #E96D41;
        text-align: center;
        margin-top: 12px;
    }

    .lxwm_content_body_h5_left_list {
        display: flex;
        justify-content: space-around;
        padding: 40px 0 40px 0;
    }

    .lxwm_content_body_h5_left_list_item {
        width: calc((100% - 30px) / 4);
    }

    .lxwm_content_body_h5_left_list_item_img {
        width: 45%;
        margin: 0 auto;
    }

    .lxwm_content_body_h5_left_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .lxwm_content_body_h5_left_list_item_title {
        font-size: 12px;
        text-align: center;
        margin-top: 6px;
    }

    .fifthScreen_content {
        display: none;
    }

    .fifthScreen_content_h5 {
        display: block;
        width: 90%;
        margin: 40px auto 0;
    }

    .fifthScreen_content_h5_list {
        width: 100%;
    }

    .fifthScreen_content_h5_list_item {
        width: calc(100% - 40px);
        margin: 10px auto 0;
        background-color: #FFFFFF;
        padding: 20px;

    }

    .fifthScreen_content_h5_list_item_content {
        display: flex;
        justify-content: space-between;
    }

    .fifthScreen_content_h5_list_item_content_img {
        width: 38%;
        height: 90px;
    }

    .fifthScreen_content_h5_list_item_content_img > a > img {
        width: 100%;
        height: 100%;
    }

    .fifthScreen_content_h5_list_item_content_right {
        width: calc(100% - 38% - 20px);
    }

    .fifthScreen_content_h5_list_item_content_right_title > a {
        font-weight: bold;
        font-size: 14px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .fifthScreen_content_h5_list_item_content_right_text {

    }

    .fifthScreen_content_h5_list_item_content_right_text > a {
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .fifthScreen_content_h5_list_item_content_right_time {
        font-weight: 500;
        font-size: 12px;
        color: #5B6E96;

    }
}

@media screen and (min-width: 768px) and (max-width: 998.9px) {
    :root {
        --headerHeight: 80px;
    }

    .header {
        background: #003399;
    }

    .pcLogo {
        display: none;
    }

    .h5Logo {
        display: block;
        margin-top: 16px;

    }

    .menu {
        display: none;
    }
    .header_conter{
        justify-content: space-between;
    }

    .h5menu {
        width: 4.63%;
        display: block;
        cursor: pointer;
    }

    .nav {
        display: none;
    }

    .logo {
        width: 34%;
    }

    .carousel-indicators > li {
        width: 180px;
    }

    .carsouselTitle {
        margin-top: 18%;
        font-size: 50px;
    }

    .carsouselImg {
        width: 90px;
        height: 90px;
    }
    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 15px;
        margin-top: 20px;
    }

    .carsouselSubTitle {
        font-size: 16px;
    }
    .thirdScreen {
        display: none;
    }

    .h5ThirdScreen {
        display: block;
        background-image: url("/r/cms/www/default/img/video/h5IndexThrenBg.jpg");
        background-size: cover;
    }
    .h5ThirdScreen_content_img {
        width: 26%;
    }
    .h5ThirdScreen_content_text{
        width: 72%;
    }
    .h5ThirdScreen_content_text_title{
        font-size: 16px;
    }
    .h5ThirdScreen_content_text_text{
        font-size: 12px;
        line-height: 25px;
    }
    .secondScreen_content{
        width: 90%;
        margin-top: 30px;
        font-size: 18px;
    }
    .secondScreen_content_more{
        margin-top: 30px;
    }
    .secondScreen_content_img{
        width: 58%;
        margin-top: 0;
    }
    .secondScreen_content_img>div{
        margin-top: 20px;
    }
    .h5FourthScreen {
        display: block;
    }

    .fourthScreen {
        display: none;
    }
    .h5FourthScreen_content_item_img{
        width: 8%;
        padding-top: 24px;
    }
    .h5FourthScreen_content_item_button{
        width: 40%;
    }
    .fourthScreen {
        display: none;
    }
    .lxwm_content_list {
        display: none;
    }

    .lxwm_content_list_h5 {
        display: block;
        margin-top: 30px;
    }
    .lxwm_content {
        width: 90%;
        margin-top: 30px;
    }

    .lxwm_content_title {
        font-size: 30px;
    }

    .lxwm_content_English {
        font-size: 14px;
    }
    .gsjj_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_title {
        font-size: 44px;
    }

    .gsjj_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gsjj_Screen_content_text {
        font-size: 20px !important;
        line-height: 1.8;
    }
    .gswh_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gswh_Screen_content_title {
        font-size: 44px;
    }

    .gswh_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gswh_Screen_content_text {
        display: inherit;
    }

    .gswh_Screen_content_text_img {
        width: 30%;
        height: 40%;
        margin: 0 auto;
    }

    .gswh_Screen_content_text_text {
        font-size: 18px;
        text-align: center;
        margin: 60px 0 0 0;
    }

    .gswh_Screen_content_text_text > div {
        line-height: 50px;
    }
    .gsry_Screen_content{
        width: 80%;
    }
    #gsrySwiper {
        margin-top: 25px;
    }
    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .slideItem_body{
        width: 75%;
    }
    .gsry_Screen_content_swiper_item{
        width: 34%;
    }
    .gsry_Screen_content_swiper_item > div:last-child {
        font-size: 10px;
        line-height: 30px;
    }

    .one_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 24px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 34px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 12px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 26px) / 2);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png");
        background-size: 100% 100%;
        margin-top: 10px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 16px;
        padding: 16px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 12px;
        padding: 6px 17px 20px 20px;
        line-height: 20px;
    }
    .three_zhccglpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .three_zhccglpt_content_title {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .three_zhccglpt_content_English {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        margin-top: 11px;
        text-align: center;
    }

    .three_zhccglpt_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 10px;
    }

    .three_zhccglpt_content_list_item {
        width: calc((100% - 14px) / 2);
        margin-top: 20px;
    }

    .three_zhccglpt_content_list_item_title {
        width: 100%;
        text-align: center;
        background: #003399;
        color: #ffffff;
        padding: 10px 0;
        font-weight: bold;
        font-size: 16px;
    }

    .three_zhccglpt_content_list_item_text {
        /*width: 100%;*/
        background: #ffffff;
        font-weight: 400;
        font-size: 12px;
        color: #7E8DAC;
        padding: 10px;
        line-height: 24px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }
    .wlzcgh_body {
        display: none;
    }
    .wlzcgh_csyxglfwpt-content {
        width: 90%;
    }

    .wlzcgh_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .wlzcgh_csyxglfwpt_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .wlzcgh_body_h5 {
        display: block;
        width: 50%;
        margin: 40px auto 0;
    }

    .wlzcgh_body_h5 > img {
        width: 100%;
    }
    .hyyy_csyxglfwpt_content {
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
        font-family: Source Han Sans CN;
    }

    .hyyy_csyxglfwpt_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .hyyy_csyxglfwpt_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        margin-top: 11px;
        text-align: center;
    }

    .hyyy_body {
        display: none;
    }

    .hyyy_body_h5 {
        display: block;
    }

    .hyyy_body_h5_text {
        font-family: Source Han Sans CN;
        font-weight: 500;
        font-size: 18px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 40px;
    }

    .hyyy_body_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 60px auto 0;
    }

    .hyyy_body_h5_list_item {
        width: calc((100% - 20px) / 3);
        margin-top: 20px;
    }

    .hyyy_body_h5_list_item_img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_img > img {
        width: 100%;
    }

    .hyyy_body_h5_list_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 12px;
        color: #5B6E96;
        line-height: 30px;
        text-align: center;
    }
    .zhyl_one_content {
        width: 80%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
    }

    .zhyl_one_content_title {
        font-weight: 500;
        font-size: 40px;
        color: #304066;
        text-align: center;
    }

    .zhyl_one_content_English {
        font-weight: 400;
        font-size: 16px;
        color: #304066;
        text-align: center;
        margin-top: 11px;
    }

    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 20px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 30px;
    }
    .zhyl_two_content {
        width: 70%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_title, .zhyl_two_content_English {
        color: #FFFFFF;
    }

    .zhyl_two_content_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item {
        width: calc((100% - 20px) / 2);
        border: 1px solid #FFFFFF;
        border-radius: 10px;
        height: 300px;
        margin-top: 20px;
    }

    .zhyl_two_content_list_item_content {
        width: calc(100% - 20px);
        margin: 0 auto;
        margin-top: 30px;
    }

    .zhyl_two_content_list_item_img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .zhyl_two_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .zhyl_two_content_list_item_title {
        text-align: center;
        font-weight: bold;
        font-size: 24px;
        color: #FFFFFF;
        margin-top: 40px;
    }

    .zhyl_two_content_list_item_text {
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        margin-top: 20px;
        line-height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .zhyl_three_content {
        width: 90%;
        margin-top: 80px;
    }

    .zhyl_three_content_swiper {
        display: none;
    }

    .zhyl_three_h5 {
        display: block;
        margin-top: 70px;
    }

    .zhyl_three_h5_img {
        width: 50%;
        margin: 40px auto 0;
    }

    .zhyl_three_h5_img > img {
        width: 100%;
    }
    .lwyt_zhzfbapt_content {
        width: 80%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_title {
        font-size: 27px;
    }

    .lwyt_zhzfbapt_content_English {
        font-size: 12px;
    }

    .lwyt_zhzfbapt_content_pc {
        display: none;
    }

    .lwyt_zhzfbapt_content_h5 {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item {
        width: calc((100% - 20px) / 2);
        margin-top: 20px;
        color: #5B6E96;
        background-image: url("/r/cms/www/default/img/video/lwytItem.png");
        background-size: cover;
        border-radius: 5px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active {
        color: #ffffff;
        background-image: url("/r/cms/www/default/img/video/lwytItemActive.png");
        background-size: cover;
        transition-duration: 300ms;
        -moz-transition-duration: 300ms;
        -webkit-transition-duration: 300ms;
        -o-transition-duration: 300ms;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        width: 40px;
        height: 4px;
        background: #ffffff;
        margin-top: 20px;
        display: none;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_Box {
        display: block;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_title {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 20px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img {
        width: 40px;
        height: 36px;
        margin-top: 30px;
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_img > img {
        width: 100%;
        height: 100%;
    }

    .lwyt_zhzfbapt_content_h5_list_item_active .lwyt_zhzfbapt_content_h5_list_item_body_img {
        /*margin-top: 8px;*/
    }

    .lwyt_zhzfbapt_content_h5_list_item_body_text {
        ont-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 25px;
        margin-top: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .jjfa_zhzfbapt_content {
        width: 80%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .jjfa_zhzfbapt_content_title {
        font-size: 40px;
    }

    .jjfa_zhzfbapt_content_English {
        font-size: 16px;
    }

    .jjfa_zhzfbapt_content_text {
        font-size: 16px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 15px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 8px 0;
    }

    .fwzc_zhzfbapt_content {
        width: 90%;
        margin-top: 40px;
    }

    .fwzc_zhzfbapt_content_title {
        font-size: 40px;
    }

    .fwzc_zhzfbapt_content_English {
        font-size: 16px;
    }

    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: cover;
        width: 100%;
        height: 140px;
        background-position-y:center;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 20px;
        margin-top: 5%;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 14px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }

    .gkgq_one_content_text {
        font-size: 18px;
        line-height: 35px;
    }
    .gkgq_two_content {
        width: 80%;
        margin-top: 30px;
    }

    .gkgq_two_content_title {
        font-size: 30px;
    }

    .gkgq_two_content_English {
        font-size: 14px;
    }

    .gkgq_two_content_list {
        display: none;
    }

    .gkgq_two_content_list_h5 {
        display: block;
    }


    .gkgq_two_content_list_h5_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .gkgq_two_content_list_h5_list_item {
        width: calc((100% - 20px) / 2);
        background-image: url("/r/cms/www/default/img/video/gkgqTwoNo2Bg.png");
        height: 210px;
        margin-top: 20px;
    }

    .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_text {
        display: none;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
    }

    .gkgq_two_content_list_h5_list_item_active {
        width: 100%;
        margin-top: 30px;
        background-image: url("/r/cms/www/default/img/video/gkgqTwoSelectBg.png");
        height: 190px;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        padding: 16px 0 0 0;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_title {
        font-size: 18px;
        margin-top: 10px;
        text-align: center;
        color: #FFFFFF;
    }

    .gkgq_two_content_list_h5_list_item_active > .gkgq_two_content_list_h5_list_item_text {
        font-size: 14px;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
        width: 80%;
        margin: 0 auto;
        padding: 10px 0 10px 0;
        display: block !important;
    }

    .gkgq_three_content {
        width: 90%;
        margin-top: 30px;
    }

    .gkgq_three_content_title {
        font-size: 30px;
    }

    .gkgq_three_content_English {
        font-size: 14px;
    }

    .gkgq_three_content_text {
        font-size: 14px;
    }

    .gkgq_three_content_list_item {
        width: calc((100% - 20px) / 2);
    }

    .szls_one_content_list_item_left {
        width: 140px;
    }

    .szls_kj_content_text {
        font-size: 16px;
        line-height: 40px;
        margin-top: 14%;
    }

    .szls_kj_content_img {
        width: 100%;
        margin: 0 auto;
    }


    .szls_ys_content {
        width: 80%;
        margin-top: 30px;
    }

    .szls_ys_content_title {
        font-size: 35px;
    }

    .szls_ys_content_English {
        font-size: 16px;
    }

    .szls_ys_content_list {
        margin-top: 0px;
    }

    .szls_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 300px;
        margin-top: 20px;
    }

    .szls_ys_content_list_item_img {
        width: 80px;
        height: 80px;
        margin-top: 30px;
    }

    .szls_ys_content_list_item_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .szls_ys_content_list_item_text {
        font-size: 16px;
        line-height: 25px;
    }
    .szls_zs_content {
        width: 80%;
        margin-top: 30px;
    }

    .szls_zs_content_title {
        font-size: 30px;
    }

    .szls_zs_content_English {
        font-size: 14px;
    }

    .szls_zs_content_body {
        display: none;
    }

    .szls_zs_content_body_h5 {
        display: block;
    }

    .szls_zs_content_body_h5_one {
        width: 65%;
        margin: 20px auto 0;
    }

    .szls_zs_content_body_h5_one > img {
        width: 100%;
        height: 100%;
    }

    .szls_zs_content_body_h5_title {
        font-size: 20px;
        color: #5B6E96;
        font-weight: bold;
        text-align: center;
        margin-top: 20px;
    }

    .szls_zs_content_body_h5_text {
        font-weight: 400;
        font-size: 14px;
        color: #5B6E96;
        line-height: 40px;
        margin-top: 20px;
        text-align: center;
    }

    .dsj_fa_content {
        width: 80%;
        margin-top: 8%;
    }

    .dsj_fa_content_title {
        font-size: 30px;
    }

    .dsj_fa_content_English {
        font-size: 14px;
    }

    .dsj_fa_content_body {
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 20px) / 2);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }
    .dsj_fa_content_body_line_item_img {
        width: 100%;
        height: 170px;
    }
    .dsj_sjzt_content_body_one_list_item_yuan{
        width: 130px;
        height: 130px;
        font-size: 20px;
        line-height: 130px;
    }
    .dsj_sjzt_content_body_one_list_item_text{
        font-size: 16px;
        line-height: 40px;
    }
    .dsj_sjzt_content_body_two_content{
        margin-top: 80px;
    }
    .dsj_sjzt_content_body_two_content_left {
        width: 50%;
        font-size: 16px;
        line-height: 40px;
    }
    .dsj_sjzt_content_body_two_content_right {
        width: 43.9%;
    }
    .dsj_sjzt_content_body_three_content{
        margin-top: 35px;
    }
    .dsj_sjzt_content_body_three_content_left {
        width: 50%;
        font-weight: 400;
        font-size: 15px;
        color: #FFFFFF;
        line-height: 35px;
    }
    .dsj_sjzt_content_body_three_content_right {
        width: 44.9%;
    }

    .dsj_ys_content {
        width: 80%;
        margin-top: 30px;
    }

    .dsj_ys_content_title {
        font-size: 35px;
    }

    .dsj_ys_content_English {
        font-size: 16px;
    }

    .dsj_ys_content_list_item {
        width: calc((100% - 20px) / 2);
        height: 275px;
        margin-top: 20px;
    }

    .dsj_ys_content_list_item_img {
        width: 100px;
        height: 100px;
    }

    .dsj_ys_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .dsj_ys_content_list_item_title {
        left: 20px;
        top: 40px;
        font-size: 18px;
    }

    .dsj_ys_content_list_item_text {
        width: calc(100% - 30px);
        left: 20px;
        top: 66px;
        font-size: 14px;
        line-height: 21px;
    }

    .gslc_Screen_content{
        width: 80%;
    }
    .gslc_Screen_content_title{
        font-size: 35px;
    }
    .gslc_Screen_content_English{
        font-size: 16px;
    }
    .gslc_Screen_content_timer_shaft_item_text{
        font-size: 24px;
    }
    .gslc_Screen_content_timer_shaft_item_yuan {
        width: 20px;
        height: 20px;
        top: 73%;
    }
    #gslcSwiper>.swiper-button-prev{
        left: 0;
    }
    #gslcSwiper>.swiper-button-next{
        right: 0;
    }
    .gslcSwiperSlideItem_2021>.gslcSwiperSlideItem_body>.gslcSwiperSlideItem_body_text {
        font-size: 14px;
        line-height: 23px;
    }
    .gslcSwiperSlideItem_body_text {
        width: 94%;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 40px;
    }

    .szls_one_content {
        width: 80%;
        margin-top: 30px;
    }

    .szls_one_content_title {
        font-size: 35px;
    }

    .szls_one_content_English {
        font-size: 16px;
    }

    .szls_one_content_text {
        font-size: 18px;
        line-height: 40px;
    }

    .szls_one_content_list_item {
        /*width: 100%;*/
        /*margin-top: 20px;*/
        /*display: flex;*/
        /*height: 140px;*/
        /*align-items: center;*/
    }

    .szls_one_content_list {
        /*margin-top: 10px;*/
    }

    .szls_one_content_list_item_left {
        width: 80px;
        /*margin: 0 20px;*/
    }

    .szls_one_content_list_item_right {
        font-size: 16px;
    }


    .lxwm_content_body_left{
        margin-left: 50px;
        margin-top: 90px;
        width: calc(100% - 50px - 41% - 100px);
    }
    .lxwm_content_body_left_title{
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
    }
    .lxwm_content_body_left_text{
        font-weight: bold;
        font-size: 16px;
        color: #E96D41;
        margin-top: 20px;
    }

    .lxwm_content_body_left_list{
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }
    .lxwm_content_body_left_list_item{
        width: 86px;
    }
    .lxwm_content_body_left_list_item_img{
        width: 60px;
        margin: 0 auto;
    }
    .lxwm_content_body_left_list_item_img>img{
        width:100%;
        height: 100%;
    }
    .lxwm_content_body_left_list_item_title{
        font-weight: 500;
        font-size: 12px;
        color: #5B6E96;
        margin-top: 28px;
        text-align: center;
    }

    .lxwm_content_body_right{
        width: 41%;
        margin: 50px;
    }
    .lxwm_content_body_right_img{
        width: 100%;
    }
    .lxwm_content_body_right_img>img{
        width: 100%;
        height: 100%;
    }
    .fifthScreen_content_list_item_content {
        width: calc(100% - 40px);
        margin: 30px auto 0;
    }
    .fifthScreen_content_list_item_content_title>a {
        font-weight: bold;
        font-size: 20px;
        color: #5B6E96;
        line-height: 34px;
        margin-top: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .fifthScreen_content_list_item_content_img {
        width: 100%;
        height: 160px;
        margin-top: 20px;
    }

}


@media screen and (min-width: 999px) and (max-width: 1199.9px) {
    .logo {
        width: 25.358%;
    }

    .carousel-indicators > li {
        width: 200px;
    }

    .carsouselTitle {
        margin-top: 12%;
        font-size: 60px;
    }

    .carsouselImg {
        width: 100px;
        height: 100px;
    }

    .carsouselSubTitle {
        font-size: 18px;
    }

    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 15px;
        margin-top: 20px;
    }
    .one_zhccglpt_content {
        width: 75%;
        margin: 0 auto;
        margin-top: 50px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 44px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 14px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 22px;
        color: #5B6E96;
        line-height: 46px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 3);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png") no-repeat;
        background-size: cover;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 20px;
        padding: 30px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 16px;
        padding: 10px 30px 20px 20px;
        line-height: 20px;

    }
    .one_zhccglpt_content_list_item_text_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .secondScreen_content{
        margin-top: 50px;
    }

    .swiper-container-main{
        width: 80%;
        margin-top: 160px;
    }
    .slideItemContent{
        width: 84%;
    }
    .swiper-button-prev, .swiper-button-next{
        width: 50px;
        height: 50px;
        background-size: cover;
    }
    .swiper-button-prev.swiper-button-disabled{
        background-size: cover;
    }
    .thirdScreen_content{
        font-size: 16px;
        padding: 20px;
    }
    .thirdScreen_content_title{
        font-size: 26px;
    }
    .thirdScreen_content_text{
        font-size: 16px;
        margin-top: 25px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .thirdScreen_content_more{
        font-size: 16px;
    }
    .thirdScreen_content_img{
        padding: 67px 30px;
    }
    .thirdScreen_content_img > img{
        height: auto;
    }
    .lxwm_content_list_right_title{
        font-size: 24px;
    }
    .gsjj_Screen_content {
        width: 90%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_title {
        font-size: 44px;
    }

    .gsjj_Screen_content_English {
        font-size: 16px;
        margin-top: 11px;
    }

    .gsjj_Screen_content_text {
        font-size: 22px !important;
        line-height: 1.8;
    }
    .gsry_Screen_content_swiper_item > div:last-child{
        font-size: 14px;
    }
    .gswh_Screen_content_text_img{
        width: 250px;
        height: 250px;
    }
    .gswh_Screen_content_text_text {
        font-size: 19px;
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }

    .wlzcgh_csyxglfwpt_content_listTop_item_img {
        width: 100px;
        height: 100px;
    }
    .wlzcgh_csyxglfwpt_content_listTop_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 20px;
        color: #003399;
        line-height: 100px;
        text-align: center;
    }
    .wlzcgh_csyxglfwpt_content_listBottom {
        width: 87%;
        margin: 0 auto;
        /* display: grid; */
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        justify-content: space-around;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item {
        width: 200px;
        height: 226px;
        background-image: url(/r/cms/www/default/img/video/dhkBg.png);
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item_text {
        padding: 25px 20px 0 20px;
        text-align: center;
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 12px;
        color: #5B6E96;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
    .hyyy_csyxglfwpt_content_list_item {
        width: calc((100% - 220px) / 9);
        margin-top: 30px;
    }
    .hyyy_csyxglfwpt_content_list_item_text {
        font-size: 18px;
    }
    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 20px;
        color: #5B6E96;
        line-height: 50px;
        margin-top: 30px;
    }
    .lwyt_zhzfbapt_content_list_item_body_title {
        font-size: 16px;
    }
    .lwyt_zhzfbapt_content_list_item_body_text {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
        margin-top: 31px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
    }
    .jjfa_zhzfbapt_content_text {
        font-size: 16px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 15px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 8px 0;
    }
    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
        row-gap: 15px;
    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: cover;
        width: 100%;
        height: 140px;
        background-position-y:center;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 20px;
        margin-top: 5%;
        margin-left: 26%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 14px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }
    .gkgq_one_content_text {
        font-size: 19px;
        line-height: 35px;
    }

    .szls_kj_content_text {
        font-size: 22px;
        line-height: 40px;
        margin-top: 5%;
    }

    .szls_kj_content_img {
        width: 90%;
        margin: 0 auto;
    }

    .szls_ys_content_list_item_title {
        font-size: 20px;
        padding: 20px 0;
    }

    .szls_ys_content_list_item_text {
        font-size: 16px;
        line-height: 25px;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 40px) / 3);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }
    .dsj_fa_content_body_line_item_img {
        width: 100%;
        height: 170px;
    }

    .dsj_ys_content_list_item{
        height: 480px;
    }
    .dsj_ys_content_list_item_title {
        top: 60px;
        font-size: 20px;
    }
    .dsj_ys_content_list_item_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        font-size: 16px;
        top: 110px;
        line-height: 33px;
    }
    .dsj_ys_content_list_item_img{
        width: 80%;
    }
    .dsj_ys_content_list_item_img>img{
        width: 100%;
    }

    .gslcSwiperSlideItem_2021 >.gslcSwiperSlideItem_body> .gslcSwiperSlideItem_body_text{
        font-size: 16px;
        line-height: 30px;
    }
    .gslcSwiperSlideItem_body_text {
        font-size: 16px;
        line-height: 37px;
    }
    .gkgq_two_content_list_item_text{
        font-size: 15px;
    }

    .szls_one_content_list_item_left {
        width: 80px;
        /*margin: 0 20px;*/
    }

    .szls_one_content_list_item_right {
        font-size: 16px;
    }

    .lxwm_content_body_left{
        margin-left: 50px;
        margin-top: 90px;
        width: calc(100% - 50px - 41% - 100px);
    }
    .lxwm_content_body_left_title{
        font-weight: bold;
        font-size: 20px;
        color: #484D57;
    }
    .lxwm_content_body_left_text{
        font-weight: bold;
        font-size: 16px;
        color: #E96D41;
        margin-top: 20px;
    }

    .lxwm_content_body_left_list{
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }
    .lxwm_content_body_left_list_item{
        width: 86px;
    }
    .lxwm_content_body_left_list_item_img{
        width: 60px;
        margin: 0 auto;
    }
    .lxwm_content_body_left_list_item_img>img{
        width:100%;
        height: 100%;
    }
    .lxwm_content_body_left_list_item_title{
        font-weight: 500;
        font-size: 12px;
        color: #5B6E96;
        margin-top: 28px;
        text-align: center;
    }

    .lxwm_content_body_right{
        width: 41%;
        margin: 50px;
    }
    .lxwm_content_body_right_img{
        width: 100%;
    }
    .lxwm_content_body_right_img>img{
        width: 100%;
        height: 100%;
    }

}

@media screen and (min-width: 1200px) and (max-width: 1499.9px) {
    .swiper-container-main {
        margin-top: 140px;
        width: 80%;
    }
    .slideItemContent{
        width: 86%;
    }
    .swiper-container-thumbs{
        width: 80%;
    }
    .thirdScreen_content_title {
        font-size: 28px;
    }

    .thirdScreen_content_text {
        font-size: 16px;
        margin-top: 25px;
        -webkit-line-clamp: 4;
    }

    .thirdScreen_content_more {
        font-size: 16px;
    }
    .swiper-button-prev, .swiper-button-next{
        width: 50px;
        height: 50px;
        background-size: cover;
    }
    .swiper-button-prev.swiper-button-disabled{
        background-size: cover;
    }
    .gsjj_Screen_content {
        width: 88%;
        margin-top: 50px;
    }

    .gsjj_Screen_content_text {
        font-size: 24px !important;
        line-height: 1.8;
    }
    .gswh_Screen_content_text_img{
        width: 300px;
        height: 300px;
    }
    .gswh_Screen_content_text_text {
        font-size: 22px;
    }
    .gsry_Screen_content_swiper_item > div:last-child{
        font-size: 14px;
    }

    .ptys_csyxglfwpt_content {
        width: 90%;
        padding-top: 50px;
    }

    .ptys_csyxglfwpt_content_title {
        font-size: 40px;
    }

    .ptys_csyxglfwpt_content_English {
        font-size: 16px;
    }

    .ptys_csyxglfwpt_content_list {
        display: block;
        margin-top: 10px;
    }

    .ptys_csyxglfwpt_content_list_item {
        width: 90%;
        margin-top: 50px;
    }

    .ptys_csyxglfwpt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .ptys_csyxglfwpt_content_list_item_img {
        width: 90px;
        height: 90px;
    }

    .ptys_csyxglfwpt_content_list_item_text {
        font-size: 16px;
        margin-top: 12px;
        line-height: 34px;
    }
    .wlzcgh_csyxglfwpt_content_listTop_item_img {
        width: 150px;
        height: 150px;
    }
    .wlzcgh_csyxglfwpt_content_listTop_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 25px;
        color: #003399;
        line-height: 150px;
        text-align: center;
    }
    .wlzcgh_csyxglfwpt_content_listBottom {
        width: 87%;
        margin: 0 auto;
        /* display: grid; */
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        justify-content: space-around;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item {
        width: 250px;
        height: 226px;
        background-image: url(/r/cms/www/default/img/video/dhkBg.png);
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item_text {
        padding: 28px 20px 0 20px;
        text-align: center;
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
    .zhyl_one_content_text {
        font-weight: 500;
        font-size: 20px;
        color: #5B6E96;
        line-height: 50px;
        margin-top: 30px;
    }
    .lwyt_zhzfbapt_content_list_item_body_title {
        font-size: 16px;
    }
    .lwyt_zhzfbapt_content_list_item_body_text {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
        margin-top: 31px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
    }
    .jjfa_zhzfbapt_content_text {
        font-size: 16px;
        color: #FFFFFF;
        line-height: 30px;
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list {
        display: block;
        margin-top: 0px;
    }

    .jjfa_zhzfbapt_content_list_item {
        margin-top: 20px;
    }

    .jjfa_zhzfbapt_content_list_item_img {
        width: 50px;
        height: 56px;
    }

    .jjfa_zhzfbapt_content_list_item_img > img {
        width: 100%;
        height: 100%;
    }

    .jjfa_zhzfbapt_content_list_item_body {
        width: calc(100% - 63px);
        margin-left: 16px;
    }

    .jjfa_zhzfbapt_content_list_item_body_title {
        font-size: 18px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text {
        font-size: 15px;
        margin-top: 10px;
    }

    .jjfa_zhzfbapt_content_list_item_body_text > p:nth-child(2) {
        padding: 8px 0;
    }
    .fwzc_zhzfbapt_content_list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 15px;
        width: 90%;
        margin: 20px auto 0;

    }

    .fwzc_zhzfbapt_content_list_item {
        background-size: 68%;
        width: 100%;
        height: 140px;
        background-position-y: center;
        background-repeat: no-repeat;
    }

    .fwzc_zhzfbapt_content_list_item_ul {
        margin: 0;
        margin-left: 20%;
    }

    .fwzc_zhzfbapt_content_list_item_title {
        font-size: 20px;
        margin-top: 5%;
        margin-left: 20%;
    }

    .fwzc_zhzfbapt_content_list_item_ul > li {
        font-size: 14px;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(6) {
        display: none;
    }

    .fwzc_zhzfbapt_content_list_item:nth-child(2) > .fwzc_zhzfbapt_content_list_item_ul > li:nth-child(7) {
        display: none;
    }
    .gkgq_one_content_text {
        font-size: 18px;
        line-height: 35px;
    }
    .szls_kj_content_text {
        font-size: 22px;
        line-height: 40px;
        margin-top: 5%;
    }

    .szls_kj_content_img {
        width: 70%;
        margin: 0 auto;
    }

    .dsj_fa_content_body_line_item {
        width: calc((100% - 40px) / 3);
        margin-top: 30px;
    }

    .dsj_fa_content_body_line_item_title {
        font-size: 18px;
        top: 25px;
        left: 15px;
    }

    .dsj_fa_content_body_line_item_text {
        font-size: 11px;
        top: 50px;
        line-height: 16px;
        left: 15px;
        right: 10px;
    }

    .dsj_fa_PC {
        display: none;
    }

    .dsj_fa_H5 {
        display: block;
    }
    .dsj_fa_content_body_line_item_img {
        width: 100%;
        height: 170px;
    }
    .dsj_ys_content_list_item{
        height: 480px;
    }
    .dsj_ys_content_list_item_title {
        top: 60px;
        font-size: 20px;
    }
    .dsj_ys_content_list_item_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        font-size: 16px;
        top: 110px;
        line-height: 33px;
    }
    .dsj_ys_content_list_item_img{
        width: 80%;
    }
    .dsj_ys_content_list_item_img>img{
        width: 100%;
    }

    .gslcSwiperSlideItem_2021 >.gslcSwiperSlideItem_body> .gslcSwiperSlideItem_body_text{
        font-size: 16px;
        line-height: 30px;
    }
    .gslcSwiperSlideItem_body_text {
        font-size: 16px;
        line-height: 37px;
    }
    /*.szls_one_content_list_item_right {*/
    /*    -webkit-line-clamp: 4;*/
    /*}*/

    .lxwm_content_body_left{
        margin-left: 50px;
        margin-top: 90px;
        width: calc(100% - 50px - 41% - 100px);
    }
    .lxwm_content_body_left_title{
        font-weight: bold;
        font-size: 30px;
        color: #484D57;
    }
    .lxwm_content_body_left_text{
        font-weight: bold;
        font-size: 26px;
        color: #E96D41;
        margin-top: 20px;
    }

    .lxwm_content_body_left_list{
        display: flex;
        justify-content: space-between;
        margin-top: 60px;
    }
    .lxwm_content_body_left_list_item{
        width: 100px;
    }
    .lxwm_content_body_left_list_item_img{
        width: 60px;
        margin: 0 auto;
    }
    .lxwm_content_body_left_list_item_img>img{
        width:100%;
        height: 100%;
    }
    .lxwm_content_body_left_list_item_title{
        font-weight: 500;
        font-size: 16px;
        color: #5B6E96;
        margin-top: 28px;
        text-align: center;
    }

}
@media screen and (min-width: 1500px) and (max-width: 1699.9px) {
    .gsjj_Screen_content {
        width: 83%;
        margin-top: 50px;
    }
    .gswh_Screen_content_text_img{
        width: 300px;
        height: 300px;
    }
    .gswh_Screen_content_text_text {
        font-size: 26px;
    }
    .wlzcgh_csyxglfwpt_content_listTop_item_img {
        width: 150px;
        height: 150px;
    }
    .wlzcgh_csyxglfwpt_content_listTop_item_text {
        font-family: Source Han Sans CN;
        font-weight: bold;
        font-size: 25px;
        color: #003399;
        line-height: 150px;
        text-align: center;
    }
    .wlzcgh_csyxglfwpt_content_listBottom {
        width: 87%;
        margin: 0 auto;
        /* display: grid; */
        /* grid-template-columns: repeat(3, 1fr); */
        display: flex;
        justify-content: space-around;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item {
        width: 250px;
        height: 226px;
        background-image: url(/r/cms/www/default/img/video/dhkBg.png);
        background-size: 100%;
        background-repeat: no-repeat;
    }
    .wlzcgh_csyxglfwpt_content_listBottom_item_text {
        padding: 28px 20px 0 20px;
        text-align: center;
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        color: #5B6E96;
        line-height: 30px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
    .lwyt_zhzfbapt_content_list_item_body_text {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-top: 31px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 8;
    }

    .dsj_fa_content_body_line_item_title {
        top: 60px;
    }

    .dsj_fa_content_body_line_item_text {
        top: 100px;
    }

    .dsj_ys_content_list_item{
        height: 540px;
    }
    .dsj_ys_content_list_item_title {
        top: 60px;
        font-size: 20px;
    }
    .dsj_ys_content_list_item_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        font-size: 16px;
        top: 110px;
        line-height: 33px;
    }
    .dsj_ys_content_list_item_img{
        width: 80%;
    }
    .dsj_ys_content_list_item_img>img{
        width: 100%;
    }

    .gslcSwiperSlideItem_2021 >.gslcSwiperSlideItem_body> .gslcSwiperSlideItem_body_text{
        font-size: 16px;
        line-height: 37px;
    }
    .gslcSwiperSlideItem_body_text {
        font-size: 16px;
        line-height: 37px;
    }

    .thirdScreen_content_title {
        font-size: 30px;
    }

    .thirdScreen_content_text {
        font-size: 18px;
        -webkit-line-clamp: 4;
    }

    .thirdScreen_content_more {
        font-size: 18px;
    }
    .lxwm_content_body_left_list{

        margin-top: 70px;
    }
}

@media screen and (min-width: 1700px) and (max-width: 1920px) {
    .lwyt_zhzfbapt_content_list_item_body_text {
        font-family: Source Han Sans CN;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-top: 31px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp:10;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
    .logo {
        width: 20.358%;
    }

    .carousel-indicators > li {
        width: 200px;
    }

    .carsouselTitle {
        margin-top: 12%;
        font-size: 70px;
    }

    .carsouselImg {
        width: 120px;
        height: 120px;
    }

    .carsouselSubTitle {
        font-size: 20px;
    }

    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 20px;
        margin-top: 27px;
    }

    .secondScreen_content {
        width: 75%;
        font-size: 1.5rem;
        margin: 0 auto;
        margin-top: 9.38rem;
    }

    .secondScreen_content_more {
        width: 75%;
        font-size: 1.25rem;
        margin-top: 3.125rem;
    }

    .secondScreen_content_img {
        margin-top: 80px;
    }

    .secondScreen_content_img > div {
        width: 156px;
    }

    .secondScreen {

        background-image: url('/r/cms/www/default/img/video/qj6422419896.jpg');
    }

    .thirdScreen {
        display: block;
        background-image: url('/r/cms/www/default/img/video/cpzxbg.jpg');
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 100%;
        /*display: flex;*/
        /*justify-content: flex-start;*/
        /*flex-wrap: wrap;*/
        /*padding: 0 8px;*/
    }
    .slideItem_body{
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    .one_zhccglpt_content {
        width: 75%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 50px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 20px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 24px;
        color: #5B6E96;
        line-height: 60px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 3);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png") no-repeat;
        background-size: cover;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 20px;
        padding: 30px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 16px;
        padding: 10px 30px 20px 20px;
        line-height: 20px;
    }
    .one_zhccglpt_content_list_item_text_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

@media screen and (min-width: 1921px) {
    .logo {
        width: 20.358%;
    }

    .carousel-indicators > li {
        width: 200px;
    }

    .carsouselTitle {
        margin-top: 6%;
        font-size: 70px;
    }

    .carsouselImg {
        width: 120px;
        height: 120px;
    }

    .carsouselSubTitle {
        font-size: 20px;
    }

    .enforcementItemImg {
        width: 80px;
        height: 80px;
    }

    .enforcementItemText {
        font-size: 20px;
        margin-top: 27px;
    }

    .secondScreen_content {
        width: 75%;
        font-size: 1.5rem;
        margin: 0 auto;
        margin-top: 9.38rem;
    }

    .secondScreen_content_more {
        width: 75%;
        font-size: 1.25rem;
        margin-top: 3.125rem;
    }

    .secondScreen_content_img {
        margin-top: 80px;
    }

    .secondScreen_content_img > div {
        width: 156px;
    }

    .secondScreen {
        background-image: url('/r/cms/www/default/img/video/qj6422419896.jpg');
    }

    .thirdScreen {
        display: block;
        background-image: url('/r/cms/www/default/img/video/cpzxbg.jpg');
    }

    #gsrySwiper > .swiper-wrapper > .slideItem {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .one_zhccglpt_content {
        width: 75%;
        margin: 0 auto;
        margin-top: 60px;
        font-family: Source Han Sans CN;
        font-weight: 500;
        color: #304066;
    }

    .one_zhccglpt_content_title {
        font-size: 50px;
        text-align: center;
    }

    .one_zhccglpt_content_English {
        font-size: 20px;
        margin-top: 11px;
        text-align: center;
    }

    .one_zhccglpt_content_text {
        font-size: 24px;
        color: #5B6E96;
        line-height: 60px;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list {
        /*margin-top: 30px;*/
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .one_zhccglpt_content_list_item {
        width: calc((100% - 46px) / 3);
        font-family: Source Han Sans CN;
        color: #ffffff;
        background: url("/r/cms/www/default/img/video/zhccOnelistItemBg.png") no-repeat;
        background-size: cover;
        margin-top: 30px;
    }

    .one_zhccglpt_content_list_item_title {
        font-weight: bold;
        font-size: 20px;
        padding: 30px 0 10px 20px;
    }

    .one_zhccglpt_content_list_item_text {
        font-weight: 400;
        font-size: 16px;
        padding: 10px 30px 20px 20px;
        line-height: 20px;
    }
    .one_zhccglpt_content_list_item_text_text{
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}
